Skip to content

Commit 96dc5d0

Browse files
committed
Merge remote-tracking branch 'origin/staging' into fix/thewhaleking/name-shadowing
# Conflicts: # bittensor_cli/version.py
2 parents 739e3d2 + 78659af commit 96dc5d0

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 9.1.3 /2025-03-12
4+
5+
## What's Changed
6+
* Allows childkey take of 0 by @thewhaleking in https://github.com/opentensor/btcli/pull/376
7+
* Passes prompt for pow_register by @thewhaleking in https://github.com/opentensor/btcli/pull/379
8+
* Updates staking test by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/382
9+
10+
**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.1.2...v9.1.3
11+
312
## 9.1.2 /2025-03-07
413

514
## What's Changed

bittensor_cli/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ def version_as_int(version):
1616
return __version_as_int__
1717

1818

19-
__version__ = "9.1.2"
19+
__version__ = "9.1.3"
2020
__version_as_int__ = version_as_int(__version__)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bittensor-cli"
7-
version = "9.1.2"
7+
version = "9.1.3"
88
description = "Bittensor CLI"
99
readme = "README.md"
1010
authors = [

tests/e2e_tests/test_staking_sudo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def test_staking(local_chain, wallet_setup):
135135
re.sub(r"\s+", " ", line) for line in show_stake.stdout.splitlines()
136136
]
137137
stake_added = cleaned_stake[8].split("│")[3].strip().split()[0]
138-
assert Balance.from_tao(float(stake_added)) >= Balance.from_tao(100)
138+
assert Balance.from_tao(float(stake_added)) >= Balance.from_tao(90)
139139

140140
# Execute remove_stake command and remove all 100 TAO from Alice
141141
remove_stake = exec_command_alice(

0 commit comments

Comments
 (0)