From 8e011001219ca695a0fdd1f0e2ed5a9892c69f72 Mon Sep 17 00:00:00 2001 From: comrumino Date: Sat, 25 Apr 2020 00:24:22 -0500 Subject: [PATCH] Bumped version and updated change log for 4.1.5 --- CHANGELOG.rst | 11 +++++++++++ rpyc/version.py | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) 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"