diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b3aafe..bb68c62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.1 + +- Two new methods were added: `get_xpub_bytes()` and `get_xpriv_bytes()` + # 2.0 This is a breaking release. diff --git a/bip32/__init__.py b/bip32/__init__.py index e10fe61..a3a030c 100644 --- a/bip32/__init__.py +++ b/bip32/__init__.py @@ -1,7 +1,7 @@ from .bip32 import BIP32, PrivateDerivationError, InvalidInputError from .utils import BIP32DerivationError, HARDENED_INDEX -__version__ = "2.0" +__version__ = "2.1" __all__ = [ "BIP32",