Skip to content

Commit

Permalink
Merge pull request #253 from prkumar/master
Browse files Browse the repository at this point in the history
v0.9.6 follow-up: bump version in __about__.py
  • Loading branch information
prkumar committed Jan 24, 2022
2 parents 8a369e9 + d9aa5b2 commit bab3a02
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog`_, and this project adheres to the
`Semantic Versioning`_ scheme.

Unreleased
==========
0.9.6_ - 2022-01-24
===================
Added
-----
- Add a new base class, ``uplink.retry.RetryBackoff``, which can be extended to
Expand All @@ -21,10 +21,11 @@ Changed

Fixed
-----
- Fix ``@returns.json`` to cast the JSON response (or field referenced by the
``key`` argument) using the ``type`` argument when it is a callable type.
This effectively reverts a change in the decorator's behavior that was
introduced in v0.9.3. (`#215`_)
- Fix ``@returns.json`` to cast JSON response (or field referenced by the ``key``
argument) using the ``type`` argument when the given type is callable. This
restores behavior that was inadvertently changed in v0.9.3. (`#215`_)
- Remove all usages of ``asyncio.coroutine`` in the library code to fix warnings
related to the function's deprecation in Python 3.8+. (`#203`_)


0.9.5_ - 2022-01-04
Expand Down Expand Up @@ -377,6 +378,7 @@ Added
.. _pydantic: https://pydantic-docs.helpmanual.io/

.. Releases
.. _0.9.6: https://github.com/prkumar/uplink/compare/v0.9.5...v0.9.6
.. _0.9.5: https://github.com/prkumar/uplink/compare/v0.9.4...v0.9.5
.. _0.9.4: https://github.com/prkumar/uplink/compare/v0.9.3...v0.9.4
.. _0.9.3: https://github.com/prkumar/uplink/compare/v0.9.2...v0.9.3
Expand Down Expand Up @@ -423,6 +425,7 @@ Added
.. _#188: https://github.com/prkumar/uplink/pull/188
.. _#198: https://github.com/prkumar/uplink/pull/198
.. _#200: https://github.com/prkumar/uplink/pull/200
.. _#203: https://github.com/prkumar/uplink/issues/203
.. _#204: https://github.com/prkumar/uplink/pull/204
.. _#207: https://github.com/prkumar/uplink/pull/207
.. _#209: https://github.com/prkumar/uplink/pull/209
Expand Down
2 changes: 1 addition & 1 deletion uplink/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
that is used both in distribution (i.e., setup.py) and within the
codebase.
"""
__version__ = "0.9.5"
__version__ = "0.9.6"

0 comments on commit bab3a02

Please sign in to comment.