diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 03f28885..954125a9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +4.1.5 +----- +Date: 4.25.2020 +- Fixed mutable object used as kwarg for Server ctor `#376`_ +- Corrections to teleport example `#374`_ +- Lowered GIL-lock acquires for <64kb within channel sends to address slowness `#280`_ + +.. _#376: https://github.com/tomerfiliba/rpyc/pull/376 +.. _#374: https://github.com/tomerfiliba/rpyc/pull/374 +.. _#280: https://github.com/tomerfiliba/rpyc/issues/280 + 4.1.4 ----- Date: 1.30.2020 diff --git a/rpyc/version.py b/rpyc/version.py index d7618e4f..24e693cd 100644 --- a/rpyc/version.py +++ b/rpyc/version.py @@ -1,3 +1,3 @@ -version = (4, 1, 4) +version = (4, 1, 5) version_string = ".".join(map(str, version)) -release_date = "2020.1.30" +release_date = "2020.4.25"