diff --git a/CHANGELOG.MD b/CHANGELOG.MD index e2032af6..07ffeff3 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,5 +1,16 @@ # Changelog +## 2.1.0 /2024-11-12 + +## What's Changed + +* Fix hot/coldkey passwords in env by @roman-opentensor in https://github.com/opentensor/btwallet/pull/55 +* Fix wallet paths outside userhome by @camfairchild in https://github.com/opentensor/btwallet/pull/59 +* fix https://github.com/opentensor/btwallet/issues/51 by @camfairchild in https://github.com/opentensor/btwallet/pull/56 +* password fixes and new PasswordError by @roman-opentensor + +**Full Changelog**: https://github.com/opentensor/btwallet/compare/v2.0.2...v2.1.0 + ## 2.0.2 /2024-10-10 ## What's Changed diff --git a/Cargo.lock b/Cargo.lock index 9ab102c7..9ec49dca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -352,7 +352,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bittensor_wallet" -version = "2.0.3" +version = "2.1.0" dependencies = [ "ansible-vault", "base64 0.22.1", diff --git a/Cargo.toml b/Cargo.toml index e75f16c5..3ee74de9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bittensor_wallet" -version = "2.0.3" +version = "2.1.0" edition = "2021" [lib] diff --git a/bittensor_wallet/__init__.py b/bittensor_wallet/__init__.py index b58bbfee..e8a47c3d 100644 --- a/bittensor_wallet/__init__.py +++ b/bittensor_wallet/__init__.py @@ -13,4 +13,4 @@ wallet as wallet, ) -__version__ = "2.0.0" +__version__ = "2.1.0" diff --git a/pyproject.toml b/pyproject.toml index ebc9d2da..2ba4f6da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "bittensor-wallet" -version = "2.0.3" +version = "2.1.0" description = "" readme = "README.md" license = {file = "LICENSE"}