Skip to content

Commit ef8ba12

Browse files
committed
Release v0.6.9
1 parent 3d0305d commit ef8ba12

6 files changed

Lines changed: 15 additions & 5 deletions

File tree

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ Changelog
33

44
.. :changelog:
55
6+
0.6.9
7+
-----
8+
9+
* Rust extension declares ``gil_used = false`` so it runs under free-threaded (no-GIL) Python [Meir Kriheli]
10+
* Added concurrent stress test for ``get_display`` under free-threaded builds [Meir Kriheli]
11+
* CI: optional cp313t/cp314t wheel builds when setup-python provides those interpreters; free-threaded test job prefers 3.14t with 3.13t fallback [Meir Kriheli]
12+
* CI: Intel macOS wheels now built on macOS 15 (replacing macOS 13) [Meir Kriheli]
13+
* Use ``uv`` for nox virtualenvs; add ``uv.lock`` and document uv-based dev setup in README and CONTRIBUTING [Meir Kriheli]
14+
* Set ``requires-python = ">=3.9"`` explicitly in ``pyproject.toml`` [Meir Kriheli]
15+
616
0.6.8
717
-----
818

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Meir Kriheli <mkriheli@gmail.com>"]
33
name = "python-bidi"
4-
version = "0.6.8"
4+
version = "0.6.9"
55
edition = "2021"
66

77
[lib]

bidi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
__all__ = ["get_base_level", "get_display"]
2424

25-
VERSION_TUPLE = (0, 6, 8)
25+
VERSION_TUPLE = (0, 6, 9)
2626
VERSION = ".".join(str(x) for x in VERSION_TUPLE)
2727

2828

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "python-bidi"
7-
version = "0.6.8"
7+
version = "0.6.9"
88
requires-python = ">=3.9"
99
readme = "README.rst"
1010
keywords = ["bidi", "unicode", "layout"]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)