From ec5fbe51522cb6f31b43c346ba34b49b2b0dbeb6 Mon Sep 17 00:00:00 2001 From: comrumino Date: Tue, 21 Feb 2023 21:40:34 -0600 Subject: [PATCH] Updated CHANGELOG.rst and version for release 5.3.1 --- CHANGELOG.rst | 14 ++++++++++++++ rpyc/version.py | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 23b54008..0f68264f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,17 @@ +5.3.1 +===== +Date: 2023-02-21 + +- `#527`_ Resolved timeout issue that was introduced in 5.2.1 +- `#525`_ and `#524`_ Fixed experimental thread binding struct for platforms where unsigned long is 8-bits + + - While the fix for thread binding is not backwards compatible, it only impacts people using an experimental feature. Hence, I did a patch version bump. + +.. _#525: https://github.com/tomerfiliba-org/rpyc/pull/525 +.. _#524: https://github.com/tomerfiliba-org/rpyc/issues/524 +.. _#527: https://github.com/tomerfiliba-org/rpyc/issues/527 + + 5.3.0 ===== Date: 2022-11-25 diff --git a/rpyc/version.py b/rpyc/version.py index c23e1165..b8b27deb 100644 --- a/rpyc/version.py +++ b/rpyc/version.py @@ -1,3 +1,3 @@ -__version__ = '5.3.0' +__version__ = '5.3.1' version = tuple(__version__.split('.')) -release_date = "2022-11-25" +release_date = "2023-02-21"