Skip to content

Commit 416cebb

Browse files
Version 0.12 (#215)
* Version 0.12 * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md * Linting * Keep version bump seperate from functionality * Update CHANGELOG * Update CHANGELOG * Update setup.py
1 parent 09a11da commit 416cebb

3 files changed

Lines changed: 16 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## 0.12.0 (October 6th, 2020)
8+
9+
### Changed
10+
11+
- HTTP header casing is now preserved, rather than always sent in lowercase. (#216 and python-hyper/h11#104)
12+
13+
### Added
14+
15+
- Add Python 3.9 to officially supported versions.
16+
17+
### Fixed
18+
19+
- Gracefully handle a stdlib asyncio bug when a connection is closed while it is in a paused-for-reading state. (#201)
20+
721
## 0.11.1 (September 28nd, 2020)
822

923
### Fixed

httpcore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"WriteError",
5252
"WriteTimeout",
5353
]
54-
__version__ = "0.11.1"
54+
__version__ = "0.12.0"
5555

5656
__locals = locals()
5757

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def get_packages(package):
7070
"Programming Language :: Python :: 3.6",
7171
"Programming Language :: Python :: 3.7",
7272
"Programming Language :: Python :: 3.8",
73+
"Programming Language :: Python :: 3.9",
7374
"Programming Language :: Python :: 3 :: Only",
7475
],
7576
)

0 commit comments

Comments
 (0)