Skip to content

Commit 9d07839

Browse files
Backmerge main to staging (#242)
* Bumps version and adds changelog * Updates changelog * Updates changelog * Bump versions, add previous release notes. * Update changelog --------- Co-authored-by: ibraheem-opentensor <ibraheem@opentensor.dev> Co-authored-by: ibraheem-opentensor <165814940+ibraheem-opentensor@users.noreply.github.com>
1 parent 0f83201 commit 9d07839

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
# Changelog
22

3-
## 8.3.0 /2024-11-06
3+
## 8.3.1 /2024-11-13
44

55
## What's Changed
6+
* Better handle incorrect file path for wallets. by @thewhaleking in https://github.com/opentensor/btcli/pull/230
7+
* Handle websockets version 14, verbose error output by @thewhaleking in https://github.com/opentensor/btcli/pull/236
8+
* Handles the new PasswordError from bt-wallet by @thewhaleking in https://github.com/opentensor/btcli/pull/232
9+
10+
**Full Changelog**: https://github.com/opentensor/btcli/compare/v8.3.0...v.8.3.1
611

12+
## 8.3.0 /2024-11-06
13+
14+
## What's Changed
715
* Better handle incorrect password by @thewhaleking in https://github.com/opentensor/btcli/pull/187
816
* Fixes success path of pow register by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/189
917
* Adds `--all` flag to transfer by @thewhaleking in https://github.com/opentensor/btcli/pull/181
10-
* Various fixes by @thewhaleking in https://github.com/opentensor/btcli/pull/199
18+
* In `do_transfer`, we check the balance with coldkeypub.ss58, but then retrieve it from the dict with coldkey.ss58. Resolve this. by @thewhaleking in https://github.com/opentensor/btcli/pull/199
19+
* Handle KeyboardInterrupt in CLI to gracefully exit (no traceback) by @thewhaleking in https://github.com/opentensor/btcli/pull/199
20+
* Handle race conditions where self.metadata may not be set before finishing initialising runtime (this may need optimised in the future) by @thewhaleking in https://github.com/opentensor/btcli/pull/199
21+
* Error description output by @thewhaleking in https://github.com/opentensor/btcli/pull/199
22+
* Taostats link fixed by @thewhaleking in https://github.com/opentensor/btcli/pull/199
23+
* Fixes not showing confirmation if --no-prompt is specified on stake remove by @thewhaleking in https://github.com/opentensor/btcli/pull/199
1124
* Fix wallets in overview by @thewhaleking in https://github.com/opentensor/btcli/pull/197
1225
* fix handling null neurons by @thewhaleking in https://github.com/opentensor/btcli/pull/214
1326
* Fix cuda pow registration by @thewhaleking in https://github.com/opentensor/btcli/pull/215
@@ -16,6 +29,7 @@
1629
* Support hotkey names for include/exclude in st add/remove by @thewhaleking in https://github.com/opentensor/btcli/pull/216
1730
* Subvortex network added by @thewhaleking in https://github.com/opentensor/btcli/pull/223
1831
* Add prompt option to all commands which use Confirm prompts by @thewhaleking in https://github.com/opentensor/btcli/pull/227
32+
* fix: local subtensor port by @distributedstatemachine in https://github.com/opentensor/btcli/pull/228
1933
* Update local subtensor port by @distributedstatemachine in https://github.com/opentensor/btcli/pull/228
2034

2135
**Full Changelog**: https://github.com/opentensor/btcli/compare/v8.2.0...v8.3.0

bittensor_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
from .cli import CLIManager
1919

2020

21-
__version__ = "8.3.0"
21+
__version__ = "8.3.1"
2222

2323
__all__ = ["CLIManager", "__version__"]

bittensor_cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class GitError(Exception):
5858
pass
5959

6060

61-
__version__ = "8.3.0"
61+
__version__ = "8.3.1"
6262

6363

6464
_core_version = re.match(r"^\d+\.\d+\.\d+", __version__).group(0)

0 commit comments

Comments
 (0)