From d5d230d2f35edfcd94e234b36ee00dacda236245 Mon Sep 17 00:00:00 2001 From: Justin Bronder Date: Thu, 23 Dec 2021 16:08:51 -0500 Subject: [PATCH] asyncio-dgram-2.1.1 --- ChangeLog | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index aaffe9c..6d64d54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2.1.1: + - Fixed type-hint for DatagramStream's drained parameter. Thanks to + spumer for the report. + https://github.com/jsbronder/asyncio-dgram/issues/11 + 2.1.0: - Type hints added - DatagramStream.send() renamed to DatagramStream._send(). This should be diff --git a/setup.py b/setup.py index 111b910..5fc421e 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def readfile(f): setuptools.setup( name="asyncio-dgram", - version="2.1.0", + version="2.1.1", description="Higher level Datagram support for Asyncio", long_description=readfile("README.md"), url="https://github.com/jsbronder/asyncio-dgram",