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',