From 609f6a0c013d947aa6cc09523712cb77ad7908c9 Mon Sep 17 00:00:00 2001 From: ibraheem-opentensor Date: Fri, 24 Jan 2025 18:34:56 -0800 Subject: [PATCH] Bumps versions + requirements --- CHANGELOG.md | 13 +++++++++++++ bittensor_cli/__init__.py | 2 +- bittensor_cli/cli.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) 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)