Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
keis committed Jun 6, 2020
1 parent 463a99f commit f47b502
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

### v2.0.1 / 2020-06-06
- [#55](https://github.com/keis/base58/pull/55) Include license file in source distribution (@synapticarbors)
- [#50](https://github.com/keis/base58/pull/50) Typecheck tests now that hamcrest has typing (@keis)
- [#49](https://github.com/keis/base58/pull/49) Replace custom exception assert with hamcrest utils (@keis)

### v2.0.0 / 2020-01-14
- [#47](https://github.com/keis/base58/pull/47) Distribute type data (PEP 561) (@hukkinj1)
- [#48](https://github.com/keis/base58/pull/48) Use setup.cfg for mypy conf (@hukkinj1)
Expand Down Expand Up @@ -42,3 +47,4 @@
### v0.2.2 / 2015-04-09
- [#3](https://github.com/keis/base58/pull/3) test round trips (@oconnor663)
- [#2](https://github.com/keis/base58/pull/2) fix encoding of empty string (@keis)

2 changes: 1 addition & 1 deletion base58/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from hashlib import sha256
from typing import Union

__version__ = '2.0.0'
__version__ = '2.0.1'

# 58 character alphabet used
BITCOIN_ALPHABET = \
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 2.0.1

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name='base58',
packages=['base58'],
package_data={'base58': ['py.typed']},
version='2.0.0',
version='2.0.1',
description='Base58 and Base58Check implementation',
author='David Keijser',
author_email='keijser@gmail.com',
Expand Down

0 comments on commit f47b502

Please sign in to comment.