Skip to content

Commit 97e49cb

Browse files
committed
Release 0.12.0
1 parent 9485498 commit 97e49cb

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
This is the changelog for the open source version of tiktoken.
44

5+
## [v0.12.0]
6+
- Build wheels for Python 3.14
7+
- Build musllinux aarch64 wheels
8+
- Support for free-threaded Python
9+
- Update version of `pyo3` and `rustc-hash`
10+
- Avoid use of `blobfile` for reading local files
11+
- Recognise `gpt-5` model identifier
12+
- Minor performance improvement for file reading
13+
514
## [v0.11.0]
615
- Support for `GPT-5`
716
- Update version of `pyo3`

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tiktoken"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition = "2024"
55

66
[lib]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tiktoken"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "tiktoken is a fast BPE tokeniser for use with OpenAI's models"
55
readme = "README.md"
66
license = { file = "LICENSE" }

tiktoken/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from .registry import get_encoding as get_encoding
66
from .registry import list_encoding_names as list_encoding_names
77

8-
__version__ = "0.11.0"
8+
__version__ = "0.12.0"

0 commit comments

Comments
 (0)