From 74f29128e33d5ee02f23c4d0cf0b7f2adf1073ee Mon Sep 17 00:00:00 2001 From: Vladimir Magamedov Date: Fri, 12 Jun 2020 14:09:26 +0300 Subject: [PATCH] Updated changelog, issued 0.3.3rc1 release candidate --- docs/changelog/index.rst | 7 +++++++ grpclib/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index ae67d7c..2b73c75 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -1,6 +1,13 @@ Changelog ========= +0.3.3 (dev) +~~~~~~~~~~~ + + - Added ``http2_connection_window_size`` and ``http2_stream_window_size`` + config values, using 4 MiB as a default for both values instead of 64 KiB + (HTTP/2 default) + 0.3.2 ~~~~~ diff --git a/grpclib/__init__.py b/grpclib/__init__.py index 3ffbb03..dde4f26 100644 --- a/grpclib/__init__.py +++ b/grpclib/__init__.py @@ -1,7 +1,7 @@ from .const import Status from .exceptions import GRPCError -__version__ = '0.3.2' +__version__ = '0.3.3rc1' __all__ = ( 'Status',