diff --git a/CHANGELOG.md b/CHANGELOG.md index 02ce58743..3c2d91a3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/bittensor_cli/src/bittensor/utils.py b/bittensor_cli/src/bittensor/utils.py index aba0f6622..5fbf37bf8 100644 --- a/bittensor_cli/src/bittensor/utils.py +++ b/bittensor_cli/src/bittensor/utils.py @@ -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") diff --git a/bittensor_cli/version.py b/bittensor_cli/version.py index 223118ebd..8463c5bf3 100644 --- a/bittensor_cli/version.py +++ b/bittensor_cli/version.py @@ -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__)