Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 9.1.0 /2025-03-01

## What's Changed
* Hotkey SS58 in stake transfer interactive selection by @thewhaleking in https://github.com/opentensor/btcli/pull/345
* Backmerge main staging 903 by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/346
* Feat/btcli view dashboard by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/348

**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.0.3...v9.1.0

## 9.0.3 /2025-02-26

## What's Changed
Expand Down
10 changes: 8 additions & 2 deletions bittensor_cli/src/bittensor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1302,10 +1302,16 @@ def print_linux_dependency_message():
console.print("\nDebian / Ubuntu:")
console.print("[green]sudo apt install libwebkit2gtk-4.0-dev[/green]")
console.print("\nNote for Ubuntu 24.04+ & Debian 13+:")
console.print("You may need these additional steps to install libwebkit2gtk:")
console.print(
"You may need to add the following line to your `/etc/apt/sources.list` file:"
"\tCreate a new source file with: [green]sudo vim /etc/apt/sources.list.d/jammy-temp.list[/green]"
)
console.print(
"\tAdd this into the file and save: [green]deb http://archive.ubuntu.com/ubuntu jammy main universe[/green]"
)
console.print(
"\tUpdate the repository and install the webkit dependency: [green]sudo apt update && sudo apt install libwebkit2gtk-4.0-dev[/green]"
)
console.print("[green]http://gb.archive.ubuntu.com/ubuntu jammy main[/green]")
console.print("\nFedora / CentOS / AlmaLinux:")
console.print("[green]sudo dnf install gtk3-devel webkit2gtk3-devel[/green]\n\n")

Expand Down
3 changes: 1 addition & 2 deletions bittensor_cli/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ def version_as_int(version):
__new_signature_version__ = 360
return __version_as_int__


__version__ = "9.0.3"
__version__ = "9.1.0"
__version_as_int__ = version_as_int(__version__)
Loading