From 6503cb10818683999e8c8da887babc73652a2be6 Mon Sep 17 00:00:00 2001 From: James Stronz Date: Tue, 24 Sep 2024 23:22:13 -0500 Subject: [PATCH] Bumped version to 6.0.1 and added release notes to CHANGELOG.rst --- CHANGELOG.rst | 14 ++++++++++++++ rpyc/version.py | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 10e82656..8756ed4b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,17 @@ +6.0.1 +===== +Date: 2024-09-24 + +- Minor fixes to class module id packs and related unittest assertions +- `#559`_ closes `#558`_ which reported issues with proxy cache referrant race conditions, get_method errors, and stream issues +- `#557`_ fix pytest issues reported in `#544`_ + +.. _#559: https://github.com/tomerfiliba-org/rpyc/pull/559 +.. _#558: https://github.com/tomerfiliba-org/rpyc/issues/558 +.. _#557: https://github.com/tomerfiliba-org/rpyc/pull/557 +.. _#544: https://github.com/tomerfiliba-org/rpyc/issues/544 + + 6.0.0 ===== Date: 2024-02-23 diff --git a/rpyc/version.py b/rpyc/version.py index d8049802..4e938092 100644 --- a/rpyc/version.py +++ b/rpyc/version.py @@ -1,3 +1,3 @@ -__version__ = '6.0.0' +__version__ = '6.0.1' version = tuple(__version__.split('.')) -release_date = "2024-02-23" +release_date = "2024-09-24"