From 62f968a4c84e3f64e6966097574ff0a59969ea9b Mon Sep 17 00:00:00 2001 From: Vladimir Magamedov Date: Wed, 24 Jul 2024 23:09:16 +0300 Subject: [PATCH] Updated changelog, issued 0.4.8rc2 release candidate --- docs/changelog/index.rst | 3 +++ grpclib/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index c85c288..a12aff5 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -4,6 +4,9 @@ Changelog 0.4.8 ~~~~~ + - Fixed ``authority`` header for the case when Channel's ``host`` argument + is the IPv6 address + - Fixed ``Channel`` for the case when ``ssl`` module is not available - Dropped Python 3.7 support - Added "wheel" packaging format diff --git a/grpclib/__init__.py b/grpclib/__init__.py index 38f76d7..26597be 100644 --- a/grpclib/__init__.py +++ b/grpclib/__init__.py @@ -1,7 +1,7 @@ from .const import Status from .exceptions import GRPCError -__version__ = '0.4.8rc1' +__version__ = '0.4.8rc2' __all__ = ( 'Status',