diff --git a/CHANGELOG.md b/CHANGELOG.md index 604e5666..034edbd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 8.4.0 /2024-11-27 + +## What's Changed +* Use hex to bytes function by @thewhaleking in https://github.com/opentensor/btcli/pull/244 +* Remove deprecated Typer options by @thewhaleking in https://github.com/opentensor/btcli/pull/248 +* Upgrade websockets by @thewhaleking in https://github.com/opentensor/btcli/pull/247 +* Fast block improvements by @thewhaleking in https://github.com/opentensor/btcli/pull/245 +* Fixed overview message discrepancy by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/251 +* Fix hyperparams setting. by @thewhaleking in https://github.com/opentensor/btcli/pull/252 +* Bumps btwallet to 2.1.2 by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/255 +* Bumps btwallet to 2.1.3 by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/256 + +**Full Changelog**: https://github.com/opentensor/btcli/compare/v8.3.1...v8.4.0 + ## 8.3.1 /2024-11-13 ## What's Changed diff --git a/bittensor_cli/__init__.py b/bittensor_cli/__init__.py index 165a7ac2..f2e41a91 100644 --- a/bittensor_cli/__init__.py +++ b/bittensor_cli/__init__.py @@ -18,6 +18,6 @@ from .cli import CLIManager -__version__ = "8.3.1" +__version__ = "8.4.0" __all__ = ["CLIManager", "__version__"] diff --git a/bittensor_cli/cli.py b/bittensor_cli/cli.py index b17c3f80..d09f0b5b 100755 --- a/bittensor_cli/cli.py +++ b/bittensor_cli/cli.py @@ -58,7 +58,7 @@ class GitError(Exception): pass -__version__ = "8.3.1" +__version__ = "8.4.0" _core_version = re.match(r"^\d+\.\d+\.\d+", __version__).group(0)