Skip to content

Commit

Permalink
Version 0.12 (#215)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
tomchristie authored Oct 6, 2020
1 parent 09a11da commit 416cebb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

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

## 0.12.0 (October 6th, 2020)

### Changed

- HTTP header casing is now preserved, rather than always sent in lowercase. (#216 and python-hyper/h11#104)

### Added

- Add Python 3.9 to officially supported versions.

### Fixed

- Gracefully handle a stdlib asyncio bug when a connection is closed while it is in a paused-for-reading state. (#201)

## 0.11.1 (September 28nd, 2020)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion httpcore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"WriteError",
"WriteTimeout",
]
__version__ = "0.11.1"
__version__ = "0.12.0"

__locals = locals()

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def get_packages(package):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
)

0 comments on commit 416cebb

Please sign in to comment.