diff --git a/CHANGELOG.md b/CHANGELOG.md index cde4d9c..1d7c99e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ # CHANGELOG +## v2.39.2 (2025-03-07) + +### Bug Fixes + +- Correct size of uint32 with cython + ([#415](https://github.com/Bluetooth-Devices/dbus-fast/pull/415), + [`f64eb58`](https://github.com/Bluetooth-Devices/dbus-fast/commit/f64eb58573e068ad731f6dc268dd903dee2e66af)) + +* chore: add more coverage for big endian systems + +* chore: fix overflow + +* fix: should have been unsigned int + + ## v2.39.1 (2025-03-07) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index 28cab5b..980eea1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "2.39.1" +version = "2.39.2" description = "A faster version of dbus-next" authors = ["Bluetooth Devices Authors "] license = "MIT" diff --git a/src/dbus_fast/__version__.py b/src/dbus_fast/__version__.py index 80dadac..3d91c5c 100644 --- a/src/dbus_fast/__version__.py +++ b/src/dbus_fast/__version__.py @@ -3,7 +3,7 @@ __description__ = ( "A performant zero-dependency DBus library for Python with asyncio support" ) __url__ = "https://github.com/bluetooth-devices/dbus-fast" -__version__ = "2.39.1" +__version__ = "2.39.2" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"