From 6ec444e8f60d543b0289752b239b46efaf58bac1 Mon Sep 17 00:00:00 2001 From: Vladimir Magamedov Date: Thu, 22 Jun 2023 23:49:28 +0300 Subject: [PATCH] Updated changelog, issued 0.4.5 release --- docs/changelog/index.rst | 9 ++++++++- grpclib/__init__.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index c24208b..31432e4 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -1,11 +1,18 @@ Changelog ========= +0.4.5 +~~~~~ + + - Fixed stubs generation for services with no rpc methods defined; pull + request courtesy @xloem + 0.4.4 ~~~~~ - Fixed deprecation warnings in tests - - Fixed minor issue by allowing to receive frames after receiving GOAWAY frame + - Fixed minor issue by allowing to receive frames after receiving ``GOAWAY`` + frame 0.4.3 ~~~~~ diff --git a/grpclib/__init__.py b/grpclib/__init__.py index 3ec9ecd..e47d054 100644 --- a/grpclib/__init__.py +++ b/grpclib/__init__.py @@ -1,7 +1,7 @@ from .const import Status from .exceptions import GRPCError -__version__ = '0.4.4' +__version__ = '0.4.5' __all__ = ( 'Status',