Skip to content

Commit f461f90

Browse files
authored
Merge pull request #362 from opentensor/backmerge/main-staging-910
Backmerge main to staging 910
2 parents f825c61 + 227c322 commit f461f90

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
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.0 /2025-03-01
4+
5+
## What's Changed
6+
* Hotkey SS58 in stake transfer interactive selection by @thewhaleking in https://github.com/opentensor/btcli/pull/345
7+
* Backmerge main staging 903 by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/346
8+
* Feat/btcli view dashboard by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/348
9+
10+
**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.0.3...v9.1.0
11+
312
## 9.0.3 /2025-02-26
413

514
## What's Changed

bittensor_cli/src/bittensor/utils.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1302,10 +1302,16 @@ def print_linux_dependency_message():
13021302
console.print("\nDebian / Ubuntu:")
13031303
console.print("[green]sudo apt install libwebkit2gtk-4.0-dev[/green]")
13041304
console.print("\nNote for Ubuntu 24.04+ & Debian 13+:")
1305+
console.print("You may need these additional steps to install libwebkit2gtk:")
13051306
console.print(
1306-
"You may need to add the following line to your `/etc/apt/sources.list` file:"
1307+
"\tCreate a new source file with: [green]sudo vim /etc/apt/sources.list.d/jammy-temp.list[/green]"
1308+
)
1309+
console.print(
1310+
"\tAdd this into the file and save: [green]deb http://archive.ubuntu.com/ubuntu jammy main universe[/green]"
1311+
)
1312+
console.print(
1313+
"\tUpdate the repository and install the webkit dependency: [green]sudo apt update && sudo apt install libwebkit2gtk-4.0-dev[/green]"
13071314
)
1308-
console.print("[green]http://gb.archive.ubuntu.com/ubuntu jammy main[/green]")
13091315
console.print("\nFedora / CentOS / AlmaLinux:")
13101316
console.print("[green]sudo dnf install gtk3-devel webkit2gtk3-devel[/green]\n\n")
13111317

bittensor_cli/version.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ def version_as_int(version):
1515
__new_signature_version__ = 360
1616
return __version_as_int__
1717

18-
19-
__version__ = "9.0.3"
18+
__version__ = "9.1.0"
2019
__version_as_int__ = version_as_int(__version__)

0 commit comments

Comments
 (0)