From 3c0dee635cbdf3f35620a4ca5f4913767e52ac18 Mon Sep 17 00:00:00 2001 From: Vladimir Magamedov Date: Thu, 23 May 2019 16:07:09 +0300 Subject: [PATCH] Updated changelog, issued 0.3.0rc3 release candidate --- docs/changelog/index.rst | 11 ++++++++++- grpclib/__init__.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index e3f711e..81db2c9 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -1,9 +1,12 @@ Changelog ========= -0.3.0rc2 +0.3.0rc3 ~~~~~~~~ + - Added example of using ``ProcessPoolExecutor`` for CPU-intensive tasks + - Covered examples and most user-facing apis with type annotations, many + thanks and credit to Callum Ryan @c-ryan747 for his work on #64 - Fixed implicit trailers-only response for streaming calls - Added ``end`` argument to the ``client.Stream.send_request`` method - **BREAKING:** Removed deprecated ``end`` argument from the @@ -20,6 +23,12 @@ Changelog - Implemented ability to listen for "events" from grpclib, see :doc:`../events` for more information +0.2.5 +~~~~~ + + - Fixed ``protocol.Stream.send_data`` method to properly wait for a positive + window size + 0.2.4 ~~~~~ diff --git a/grpclib/__init__.py b/grpclib/__init__.py index 6434f36..2336ebc 100644 --- a/grpclib/__init__.py +++ b/grpclib/__init__.py @@ -1 +1 @@ -__version__ = '0.3.0rc2' +__version__ = '0.3.0rc3'