Skip to content

Commit ec905db

Browse files
committed
Bump Version to 0.3.15
1 parent 75b6eaa commit ec905db

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.15]
11+
12+
- feat: Update llama.cpp to [ggml-org/llama.cpp@cd6983d56d2cce94ecb86bb114ae8379a609073c](https://github.com/ggml-org/llama.cpp/commit/cd6983d56d2cce94ecb86bb114ae8379a609073c)
13+
- feat: [Add strftime_now function into Jinja2ChatFormatter Class for gpt-oss and gemma3 chat_template need](https://github.com/JamePeng/llama-cpp-python/commit/c7e20d33a660eef95bf7656b04e8cd52ba62339d)
14+
1015
## [0.3.14]
1116

1217
- feat: Update llama.cpp to [ggml-org/llama.cpp@79e0b68c178656bb0632cb8602d2940b755077f8](https://github.com/ggml-org/llama.cpp/commit/f0d4d176df72734a543c29eef9f942850c13311e)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![PyPI](https://img.shields.io/pypi/v/llama-cpp-python)](https://pypi.org/project/llama-cpp-python/)
1010
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/llama-cpp-python)](https://pypi.org/project/llama-cpp-python/)
1111
[![PyPI - License](https://img.shields.io/pypi/l/llama-cpp-python)](https://pypi.org/project/llama-cpp-python/)
12-
[![PyPI - Downloads](https://img.shields.io/pypi/dm/llama-cpp-python)](https://pypi.org/project/llama-cpp-python/)
12+
[![PyPI - Downloads](https://static.pepy.tech/badge/llama-cpp-python/month)](https://pepy.tech/projects/llama-cpp-python)
1313
[![Github All Releases](https://img.shields.io/github/downloads/abetlen/llama-cpp-python/total.svg?label=Github%20Downloads)]()
1414

1515
Simple Python bindings for **@ggerganov's** [`llama.cpp`](https://github.com/ggerganov/llama.cpp) library.

llama_cpp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .llama_cpp import *
22
from .llama import *
33

4-
__version__ = "0.3.14"
4+
__version__ = "0.3.15"

llama_cpp/llama_chat_format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def __call__(
246246
def raise_exception(message: str):
247247
raise ValueError(message)
248248

249-
def strftime_now(format_string="%Y-%m-%d %H:%M:%S"):
249+
def strftime_now(format_string="%Y-%m-%d %H:%M:%S") -> str:
250250
"""
251251
Returns the current time formatted as a string.
252252
"""

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2829
]
2930

3031

0 commit comments

Comments
 (0)