diff --git a/CHANGELOG.md b/CHANGELOG.md index 43ae097df..e3eeac9b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 8.3.0 /2024-11-06 + +## What's Changed + +* Better handle incorrect password by @thewhaleking in https://github.com/opentensor/btcli/pull/187 +* Fixes success path of pow register by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/189 +* Adds `--all` flag to transfer by @thewhaleking in https://github.com/opentensor/btcli/pull/181 +* Various fixes by @thewhaleking in https://github.com/opentensor/btcli/pull/199 +* Fix wallets in overview by @thewhaleking in https://github.com/opentensor/btcli/pull/197 +* fix handling null neurons by @thewhaleking in https://github.com/opentensor/btcli/pull/214 +* Fix cuda pow registration by @thewhaleking in https://github.com/opentensor/btcli/pull/215 +* Adds confirmation after each successful regen by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/203 +* Removes wallet path prompt by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/205 +* Support hotkey names for include/exclude in st add/remove by @thewhaleking in https://github.com/opentensor/btcli/pull/216 +* Subvortex network added by @thewhaleking in https://github.com/opentensor/btcli/pull/223 +* Add prompt option to all commands which use Confirm prompts by @thewhaleking in https://github.com/opentensor/btcli/pull/227 +* Update local subtensor port by @distributedstatemachine in https://github.com/opentensor/btcli/pull/228 + +**Full Changelog**: https://github.com/opentensor/btcli/compare/v8.2.0...v8.3.0 + ## 8.2.0 /2024-10-10 ## What's Changed diff --git a/bittensor_cli/__init__.py b/bittensor_cli/__init__.py index 8fff761ce..6eaa6edc4 100644 --- a/bittensor_cli/__init__.py +++ b/bittensor_cli/__init__.py @@ -18,6 +18,6 @@ from .cli import CLIManager -__version__ = "8.2.0" +__version__ = "8.3.0" __all__ = ["CLIManager", "__version__"] diff --git a/bittensor_cli/cli.py b/bittensor_cli/cli.py index 87c11998e..319480d42 100755 --- a/bittensor_cli/cli.py +++ b/bittensor_cli/cli.py @@ -57,7 +57,7 @@ class GitError(Exception): pass -__version__ = "8.2.0" +__version__ = "8.3.0" _core_version = re.match(r"^\d+\.\d+\.\d+", __version__).group(0)