diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a879b33..de809acc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 8.2.0rc14 /2025-01-24 + +## What's Changed +* Adds stake_swap, stake_transfer. +* Updates stake_move with interactive mode +* Clean up of outdated subtensor methods + code +* Adds --html option in price command + +## 8.2.0rc13 /2025-01-15 + +## What's Changed +* Bux fixes + ## 8.2.0rc12 /2025-01-14 ## What's Changed diff --git a/bittensor_cli/__init__.py b/bittensor_cli/__init__.py index d0da2734..8ecf1c97 100644 --- a/bittensor_cli/__init__.py +++ b/bittensor_cli/__init__.py @@ -18,6 +18,6 @@ from .cli import CLIManager -__version__ = "8.2.0rc13" +__version__ = "8.2.0rc14" __all__ = ["CLIManager", "__version__"] diff --git a/bittensor_cli/cli.py b/bittensor_cli/cli.py index 889b18fc..f5924cee 100755 --- a/bittensor_cli/cli.py +++ b/bittensor_cli/cli.py @@ -64,7 +64,7 @@ class GitError(Exception): pass -__version__ = "8.2.0rc13" +__version__ = "8.2.0rc14" _core_version = re.match(r"^\d+\.\d+\.\d+", __version__).group(0)