Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
keis committed Oct 30, 2021
1 parent 7ec464f commit 4c1c234
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
## Changelog

### v2.1.1 / 2021-10-30
- [#67](https://github.com/keis/base58/pull/67) use github actions (@keis)
- [#66](https://github.com/keis/base58/pull/66) Escape illegal special characters in error message (@hukkin)

### v2.1.0 / 2021-01-09
- [#64](https://github.com/keis/base58/pull/64) Parametrise a few tests over alphabet (@keis)
- [#63](https://github.com/keis/base58/pull/63) Made it handle any base with passing alphabet. (#63) (@tanupoo)
- [#62](https://github.com/keis/base58/pull/62) Setup cfg (@keis)
- [#61](https://github.com/keis/base58/pull/61) Add support to ppc64le (@gururajrkatti)
- [#60](https://github.com/keis/base58/pull/60) Update README.md (@alloyxrp)
- [#59](https://github.com/keis/base58/pull/59) New alias for XRP alphabet (@alloyxrp)
- [#60](https://github.com/keis/base58/pull/60) Update README.md (@alloynetworks)
- [#59](https://github.com/keis/base58/pull/59) New alias for XRP alphabet (@alloynetworks)
- [#58](https://github.com/keis/base58/pull/58) Improve invalid character message (@keis)
- [#57](https://github.com/keis/base58/pull/57) Autofix for similar letters (@keis)
- [#56](https://github.com/keis/base58/pull/56) Add performance benchmarks using pytest-benchmark (@keis)
Expand Down
2 changes: 1 addition & 1 deletion base58/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from hashlib import sha256
from typing import Mapping, Union

__version__ = '2.1.0'
__version__ = '2.1.1'

# 58 character alphabet used
BITCOIN_ALPHABET = \
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.1.0
current_version = 2.1.1

[metadata]
name = base58
Expand Down Expand Up @@ -32,7 +32,7 @@ base58 = py.typed

[options.extras_require]
tests =
mypy
mypy
PyHamcrest>=2.0.2
pytest>=4.6
pytest-benchmark
Expand Down

0 comments on commit 4c1c234

Please sign in to comment.