From 2fb2a84684e007ae1f7507e0084455a57a8dfeed Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Mon, 25 Oct 2021 14:46:07 +0200 Subject: [PATCH] Release 2.1 --- CHANGELOG.md | 4 ++++ bip32/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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",