File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
12
## 9.0.3 /2025-02-26
4
13
5
14
## What's Changed
Original file line number Diff line number Diff line change @@ -1302,10 +1302,16 @@ def print_linux_dependency_message():
1302
1302
console .print ("\n Debian / Ubuntu:" )
1303
1303
console .print ("[green]sudo apt install libwebkit2gtk-4.0-dev[/green]" )
1304
1304
console .print ("\n Note for Ubuntu 24.04+ & Debian 13+:" )
1305
+ console .print ("You may need these additional steps to install libwebkit2gtk:" )
1305
1306
console .print (
1306
- "You may need to add the following line to your `/etc/apt/sources.list` file:"
1307
+ "\t Create a new source file with: [green]sudo vim /etc/apt/sources.list.d/jammy-temp.list[/green]"
1308
+ )
1309
+ console .print (
1310
+ "\t Add this into the file and save: [green]deb http://archive.ubuntu.com/ubuntu jammy main universe[/green]"
1311
+ )
1312
+ console .print (
1313
+ "\t Update the repository and install the webkit dependency: [green]sudo apt update && sudo apt install libwebkit2gtk-4.0-dev[/green]"
1307
1314
)
1308
- console .print ("[green]http://gb.archive.ubuntu.com/ubuntu jammy main[/green]" )
1309
1315
console .print ("\n Fedora / CentOS / AlmaLinux:" )
1310
1316
console .print ("[green]sudo dnf install gtk3-devel webkit2gtk3-devel[/green]\n \n " )
1311
1317
Original file line number Diff line number Diff line change @@ -15,6 +15,5 @@ def version_as_int(version):
15
15
__new_signature_version__ = 360
16
16
return __version_as_int__
17
17
18
-
19
- __version__ = "9.0.3"
18
+ __version__ = "9.1.0"
20
19
__version_as_int__ = version_as_int (__version__ )
You can’t perform that action at this time.
0 commit comments