Skip to content

Commit

Permalink
Version 0.16.3 (#640)
Browse files Browse the repository at this point in the history
* Version 0.16.3

* Update CHANGELOG

* Update CHANGELOG

* Update CHANGELOG.md
  • Loading branch information
tomchristie committed Dec 20, 2022
1 parent 585b6f3 commit f0657cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ 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.16.3 (December 20th, 2022)

- Allow `ws` and `wss` schemes. Allows us to properly support websocket upgrade connections. (#625)
- Forwarding HTTP proxies use a connection-per-remote-host. Required by some proxy implementations. (#637)
- Don't raise `RuntimeError` when closing a connection pool with active connections. Removes some error cases when cancellations are used. (#631)
- Lazy import `anyio`, so that it's no longer a hard dependancy, and isn't imported if unused. (#639)

## 0.16.2 (November 25th, 2022)

- Revert 'Fix async cancellation behaviour', which introduced race conditions. (#627)
Expand Down
2 changes: 1 addition & 1 deletion httpcore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"WriteError",
]

__version__ = "0.16.2"
__version__ = "0.16.3"


__locals = locals()
Expand Down

0 comments on commit f0657cb

Please sign in to comment.