diff --git a/CHANGES.rst b/CHANGES.rst index 7cfffdef2e4..443b6a2671f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,10 +14,17 @@ Changelog .. towncrier release notes start +3.1.2 (2018-04-05) +================== + +- Make ``LineTooLong`` exception more detailed about actual data size (#2863) +- Call ``on_chunk_sent`` when write_eof takes as a param the last chunk (#2909) + + 3.1.1 (2018-03-27) ================== -* Support *asynchronous iterators* (and *asynchronous generators* as +- Support *asynchronous iterators* (and *asynchronous generators* as well) in both client and server API as request / response BODY payloads. (#2802) diff --git a/CHANGES/2863.bugfix b/CHANGES/2863.bugfix deleted file mode 100644 index 1d2d55ecc5f..00000000000 --- a/CHANGES/2863.bugfix +++ /dev/null @@ -1 +0,0 @@ -Make LineTooLong exception more detailed about actual data size. \ No newline at end of file diff --git a/CHANGES/2909.bugfix b/CHANGES/2909.bugfix deleted file mode 100644 index 617f44d6057..00000000000 --- a/CHANGES/2909.bugfix +++ /dev/null @@ -1 +0,0 @@ -Call on_chunk_sent when write_eof takes as a param the last chunk diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 278dfc2c3db..04b35fe26ef 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.1.1' +__version__ = '3.1.2' # This relies on each of the submodules having an __all__ variable.