Skip to content

Commit af10b45

Browse files
authored
Merge pull request #550 from opentensor/release/9.8.5
Release/9.8.5
2 parents 24fdc45 + 866365e commit af10b45

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

CHANGELOG.md

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

3+
## 9.8.5 /2025-07-16
4+
* Updates `user_liquidity_enabled` to not root sudo only. by @thewhaleking in https://github.com/opentensor/btcli/pull/546
5+
* Patches broken Brahmi characters with normal characters. by @thewhaleking in https://github.com/opentensor/btcli/pull/547
6+
7+
**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.8.4...v9.8.5
8+
39
## 9.8.4 /2025-07-10
410

511
## What's Changed

bittensor_cli/src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ class WalletValidationTypes(Enum):
660660
),
661661
"yuma3_enabled": ("sudo_set_yuma3_enabled", False),
662662
"alpha_sigmoid_steepness": ("sudo_set_alpha_sigmoid_steepness", True),
663-
"user_liquidity_enabled": ("toggle_user_liquidity", True),
663+
"user_liquidity_enabled": ("toggle_user_liquidity", False),
664664
}
665665

666666
HYPERPARAMS_MODULE = {

bittensor_cli/src/commands/subnets/subnets.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,17 @@ def _create_table(subnets_, block_number_):
323323

324324
for subnet in subnets_:
325325
netuid = subnet.netuid
326+
# The default symbols for 123 and 124 are visually identical:
327+
# 123: 𑀀
328+
# 124: 𑀁
329+
# and the symbol for 125 is basically a colon
330+
# 125: 𑀂
331+
# however, because they're in Brahmi, which very few fonts support, they don't render properly
332+
# This patches them.
333+
replacements = {69632: "˙", 69633: "˙", 69634: ":"}
334+
if (sso := ord(subnet.symbol)) in replacements.keys():
335+
subnet.symbol = replacements[sso]
336+
326337
symbol = f"{subnet.symbol}\u200e"
327338

328339
if netuid == 0:

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.8.4"
7+
version = "9.8.5"
88
description = "Bittensor CLI"
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)