From af60cb5c21bb73825432f0ac55a7e5d0eb5e4dbc Mon Sep 17 00:00:00 2001 From: ibraheem-opentensor Date: Thu, 9 Jan 2025 15:18:41 -0800 Subject: [PATCH] Bumps version and updates changelog --- CHANGELOG.md | 5 +++++ bittensor_cli/__init__.py | 2 +- bittensor_cli/cli.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c56d1132..e05d972d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 8.2.0rc9 /2025-01-09 + +## What's Changed +* Updates delegate selection + ## 8.2.0rc8 /2025-01-09 ## What's Changed diff --git a/bittensor_cli/__init__.py b/bittensor_cli/__init__.py index 07d481e7..57e97493 100644 --- a/bittensor_cli/__init__.py +++ b/bittensor_cli/__init__.py @@ -18,6 +18,6 @@ from .cli import CLIManager -__version__ = "8.2.0rc8" +__version__ = "8.2.0rc9" __all__ = ["CLIManager", "__version__"] diff --git a/bittensor_cli/cli.py b/bittensor_cli/cli.py index 273aad51..41f4cf49 100755 --- a/bittensor_cli/cli.py +++ b/bittensor_cli/cli.py @@ -62,7 +62,7 @@ class GitError(Exception): pass -__version__ = "8.2.0rc8" +__version__ = "8.2.0rc9" _core_version = re.match(r"^\d+\.\d+\.\d+", __version__).group(0)