Skip to content

Commit

Permalink
Bumps version, changelog ,and err handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ibraheem-opentensor committed Feb 7, 2025
1 parent d1c59a5 commit 81c13a9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 9.0.0rc2 /2025-02-06

## What's Changed
* Updates to new Async Substrate Interface
* Other bug fixes and improvements

## 9.0.0rc1 /2025-02-04

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion bittensor_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
from .cli import CLIManager


__version__ = "9.0.0rc1"
__version__ = "9.0.0rc2"

__all__ = [CLIManager, __version__]
4 changes: 2 additions & 2 deletions bittensor_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class GitError(Exception):
pass


__version__ = "9.0.0rc1"
__version__ = "9.0.0rc2"


_core_version = re.match(r"^\d+\.\d+\.\d+", __version__).group(0)
Expand Down Expand Up @@ -937,7 +937,7 @@ async def _run():
try:
raise typer.Exit()
except Exception as e: # ensures we always exit cleanly
if not isinstance(e, typer.Exit):
if not isinstance(e, (typer.Exit, RuntimeError)): # temporarily to handle multiple run commands in one session
err_console.print(f"An unknown error has occurred: {e}")

if sys.version_info < (3, 10):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
wheel
async-property==0.2.2
async-substrate-interface>=1.0.0rc10
async-substrate-interface>=1.0.0rc12
aiohttp~=3.10.2
backoff~=2.2.1
GitPython>=3.0.0
Expand Down

0 comments on commit 81c13a9

Please sign in to comment.