From 9035978c0efb9048c4d4da4343813c562c183771 Mon Sep 17 00:00:00 2001 From: Vladimir Magamedov Date: Wed, 25 Aug 2021 22:40:53 +0300 Subject: [PATCH] Updated changelog, issued 0.4.2 release --- docs/changelog/index.rst | 6 ++++-- grpclib/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index 447877c..d2ab774 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -1,9 +1,11 @@ Changelog ========= -0.4.2 (dev) -~~~~~~~~~~~ +0.4.2 +~~~~~ + - **BREAKING:** Regenerated internal ``*_pb2.py`` files, they now require + ``protobuf>=3.12.0`` - Extended ``SendTrailingMetadata`` and ``RecvTrailingMetadata`` events with a status-related properties - Fixed deprecation warning related to ``asyncio.wait()`` and Python 3.9 diff --git a/grpclib/__init__.py b/grpclib/__init__.py index b89d1d1..4cd58b9 100644 --- a/grpclib/__init__.py +++ b/grpclib/__init__.py @@ -1,7 +1,7 @@ from .const import Status from .exceptions import GRPCError -__version__ = '0.4.2rc2' +__version__ = '0.4.2' __all__ = ( 'Status',