diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c1a27286..c2dfeef9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +10.5.0 (2020-02-24) +------------------- +- Ensure that ``requst_options`` headers are not modified while constructing request - PR #440. Thanks Nick Gaya for your contribution! +- Fix header authentication for ``host:port`` type - PR #444. Thanks sanda87 for your contribution! +- Reraise fido ``HttpTimeoutError`` without modification - PR #447. Thanks Nick Gaya for your contribution! +- Documentation updates - PR #442 and PR #448. Thanks Colin Dunklau for your contribution! +- Ensure that bravado.client.SwaggerSpec is deep copyable - PR #445 + 10.4.3 (2019-11-04) ------------------- - Some type annotation fixes and improvements, in particular for the response_adapter argument to ``HttpFuture`` - PR #436 diff --git a/bravado/__init__.py b/bravado/__init__.py index bb87db5f..352ccbfe 100644 --- a/bravado/__init__.py +++ b/bravado/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -version = '10.4.3' +version = '10.5.0'