Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/8.3.0 #219

Merged
merged 31 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1fcee62
Better handle incorrect password.
thewhaleking Oct 15, 2024
885d1fd
Merge pull request #187 from opentensor/fix/thewhaleking/better-handl…
thewhaleking Oct 15, 2024
16d59bd
Fixes success path of pow register
ibraheem-opentensor Oct 15, 2024
cf4e6e7
Adds back decryption err_msg
ibraheem-opentensor Oct 15, 2024
a111077
Fixes termination of workers
ibraheem-opentensor Oct 15, 2024
7e0634b
Enhance terminate_workets
ibraheem-opentensor Oct 15, 2024
706f3e5
Merge pull request #189 from opentensor/fix/pow-register-nits
ibraheem-opentensor Oct 15, 2024
f958ec8
Adds `--all` flag to transfer (#181)
thewhaleking Oct 16, 2024
1bb0ec7
Various fixes (#199)
thewhaleking Nov 1, 2024
e4c2c62
Allow wallet-like objects for use in parsing keys out (#197)
thewhaleking Nov 4, 2024
2b2053a
Sets num_processes correctly for CUDA registration.
thewhaleking Nov 4, 2024
c75b1d2
Adds confirmation after each successful regen
ibraheem-opentensor Oct 31, 2024
8abb2c8
fix handling null neurons (#214)
thewhaleking Nov 4, 2024
a0edd16
Merge pull request #215 from opentensor/fix/thewhaleking/fix-cuda-pow
thewhaleking Nov 4, 2024
143bbad
Adds verification for json file used in regenerating
ibraheem-opentensor Nov 4, 2024
b259022
Merge pull request #203 from opentensor/fix/add-success-info-regenera…
thewhaleking Nov 4, 2024
c29fdec
Removes wallet path prompt (#205)
ibraheem-opentensor Nov 4, 2024
f5fb08d
Allows for using hotkey names or ss58 addresses in include/exclude op…
thewhaleking Nov 4, 2024
a4411b2
Merge pull request #216 from opentensor/feat/thewhaleking/allow-hk-na…
thewhaleking Nov 4, 2024
78ec7f8
Bumps version and adds changelog
ibraheem-opentensor Nov 5, 2024
2d6b4dd
Adds subvortex network
thewhaleking Nov 5, 2024
770f84a
Merge pull request #223 from opentensor/feat/thewhaleking/add-subvortex
thewhaleking Nov 5, 2024
7c9eef8
Merge branch 'staging' into release/8.3.0
ibraheem-opentensor Nov 6, 2024
67225ba
Add prompt option to all commands which use Confirm prompts (#227)
thewhaleking Nov 6, 2024
e796406
Merge branch 'staging' into release/8.3.0
ibraheem-opentensor Nov 6, 2024
458269a
Updates changelog
ibraheem-opentensor Nov 6, 2024
e82c1ad
fix: local subtensor port
distributedstatemachine Nov 6, 2024
2a114cd
Merge branch 'staging' into fix/local_subtensor_connection
ibraheem-opentensor Nov 6, 2024
66d14ad
Merge pull request #228 from distributedstatemachine/fix/local_subten…
ibraheem-opentensor Nov 6, 2024
d86a254
Merge branch 'staging' into release/8.3.0
ibraheem-opentensor Nov 6, 2024
1cd1f8a
Updates changelog
ibraheem-opentensor Nov 6, 2024
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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 8.3.0 /2024-11-06

## What's Changed

* Better handle incorrect password by @thewhaleking in https://github.com/opentensor/btcli/pull/187
* Fixes success path of pow register by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/189
* Adds `--all` flag to transfer by @thewhaleking in https://github.com/opentensor/btcli/pull/181
* Various fixes by @thewhaleking in https://github.com/opentensor/btcli/pull/199
* Fix wallets in overview by @thewhaleking in https://github.com/opentensor/btcli/pull/197
* fix handling null neurons by @thewhaleking in https://github.com/opentensor/btcli/pull/214
* Fix cuda pow registration by @thewhaleking in https://github.com/opentensor/btcli/pull/215
* Adds confirmation after each successful regen by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/203
* Removes wallet path prompt by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/205
* Support hotkey names for include/exclude in st add/remove by @thewhaleking in https://github.com/opentensor/btcli/pull/216
* Subvortex network added by @thewhaleking in https://github.com/opentensor/btcli/pull/223
* Add prompt option to all commands which use Confirm prompts by @thewhaleking in https://github.com/opentensor/btcli/pull/227
* Update local subtensor port by @distributedstatemachine in https://github.com/opentensor/btcli/pull/228

**Full Changelog**: https://github.com/opentensor/btcli/compare/v8.2.0...v8.3.0

## 8.2.0 /2024-10-10

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion bittensor_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
from .cli import CLIManager


__version__ = "8.2.0"
__version__ = "8.3.0"

__all__ = ["CLIManager", "__version__"]
Loading
Loading