From b9a0ec81953af4575f7eefe756535353e47d13e8 Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 27 Apr 2023 20:20:05 -0400 Subject: [PATCH] New version: 0.8.3 Signed-off-by: mulhern --- CHANGES.txt | 16 ++++++++++++++++ src/dbus_python_client_gen/_version.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 5320b90..ed5bb93 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,19 @@ +dbus-python-client-gen 0.8.3 +============================ +Recommended development environment: Fedora 38 + +- Simplifyy setup.cfg: + https://github.com/stratis-storage/dbus-python-client-gen/pull/93 + +- Make __version__ available directly from package import: + https://github.com/stratis-storage/dbus-python-client-gen/pull/92 + +- Tidies and Maintenance: + https://github.com/stratis-storage/dbus-python-client-gen/pull/91 + https://github.com/stratis-storage/dbus-python-client-gen/pull/90 + https://github.com/stratis-storage/dbus-python-client-gen/pull/88 + + dbus-python-client-gen 0.8.2 ============================ Recommended development environment: Fedora 37 diff --git a/src/dbus_python_client_gen/_version.py b/src/dbus_python_client_gen/_version.py index 60deb6c..9afec7c 100644 --- a/src/dbus_python_client_gen/_version.py +++ b/src/dbus_python_client_gen/_version.py @@ -8,5 +8,5 @@ .. moduleauthor:: mulhern """ -__version__ = "0.8.2" +__version__ = "0.8.3" __version_info__ = tuple(int(x) for x in __version__.split("."))