diff --git a/CHANGELOG.md b/CHANGELOG.md index e62f959..9d08132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,30 @@ # CHANGELOG +## v2.39.6 (2025-03-17) + +### Bug Fixes + +- Don't limit python upper bound ([#424](https://github.com/Bluetooth-Devices/dbus-fast/pull/424), + [`9cafbb6`](https://github.com/Bluetooth-Devices/dbus-fast/commit/9cafbb6a0b70d975b73889ded99e2e0a6af2b467)) + +This requires all projects that depend on dbus-fast to have to set the same limit, which is an + unnecessary burden. + +* fix: adjust pygobject pin to required python < 4 (see + https://gitlab.gnome.org/GNOME/pygobject/-/merge_requests/418) + +--------- + +Co-authored-by: J. Nick Koston + +### Chores + +- Remove workflow from previous failed attempt at testing big-endian + ([#423](https://github.com/Bluetooth-Devices/dbus-fast/pull/423), + [`20e102c`](https://github.com/Bluetooth-Devices/dbus-fast/commit/20e102ca8f0606f6abe26fb35a30e94997740bcc)) + + ## v2.39.5 (2025-03-13) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index 6764f05..d4dee62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "2.39.5" +version = "2.39.6" 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 0ea124b..2d4dede 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.5" +__version__ = "2.39.6" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"