Skip to content

Commit

Permalink
Release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nehpetsde committed May 27, 2019
1 parent d0939c1 commit 838dfe9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
History
=======

0.3.3 (2019-05-27)
------------------

* Support Python 3.7.

* Python 3.7 mandates PEP 479 which made StopIteration within a
generator raise RuntimeException.

* The urllib.parse.quote function now follows RFC 3986 and does no
longer convert the `~` character.

* Importing ABCs from `collections` will no longer be possible with
Python 3.8, must then import from `collections.abc`.

* WiFi and Bluetooth Records print attribute keys in sorted order to
have consitent output in documentation embedded tests (doctest).

0.3.2 (2018-02-05)
------------------

Expand Down
2 changes: 1 addition & 1 deletion src/ndef/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@

# METADATA ####################################################################

__version__ = "0.3.2"
__version__ = "0.3.3"

__title__ = "ndef"
__description__ = "NFC Data Exchange Format decoder and encoder."
Expand Down

0 comments on commit 838dfe9

Please sign in to comment.