Skip to content
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
35f8af6
Handle git not installed (#164)
thewhaleking Oct 6, 2024
b82ca0e
Handle cancelling receiving task before it's initiated
thewhaleking Oct 7, 2024
a79e2f2
Merge pull request #166 from opentensor/fix/thewhaleking/handle-recei…
thewhaleking Oct 7, 2024
b781384
Change network option to a list so that it can be correctly parsed if…
thewhaleking Oct 7, 2024
6558931
Fixes receiving task cancellation (does not try to await if not started)
thewhaleking Oct 7, 2024
8b266f0
Merge pull request #168 from opentensor/fix/thewhaleking/receiving-ta…
thewhaleking Oct 7, 2024
c9277a4
mnemonic change: support numbered mnemonic (#167)
thewhaleking Oct 7, 2024
5e24241
Merge branch 'staging' into backmerge/release-811
ibraheem-abe Oct 7, 2024
3d45342
Merge pull request #169 from opentensor/backmerge/release-811
ibraheem-abe Oct 7, 2024
ef94124
Handle custom errors from subtensor (#79)
thewhaleking Oct 7, 2024
1df2e8d
Ignore port
ibraheem-abe Oct 7, 2024
78c2b95
Removes validation for port
ibraheem-abe Oct 7, 2024
bd9e435
Merge pull request #170 from opentensor/fix/remove-explicit-port
ibraheem-abe Oct 7, 2024
8177ec5
Adds support for ss58 addresses in wallet balance
ibraheem-abe Oct 9, 2024
cc95704
Shifts conversion to correct place
ibraheem-abe Oct 9, 2024
fa97cc7
Adds support for multiple coldkeys
ibraheem-abe Oct 9, 2024
306fd30
Renames ss58_address -> ss58_addresses
ibraheem-abe Oct 9, 2024
309c330
Merge pull request #172 from opentensor/fix/unstaking-amount-all
ibraheem-abe Oct 9, 2024
4c8407a
Updates docs
ibraheem-abe Oct 9, 2024
f044317
Merge pull request #171 from opentensor/feat/support-ss58-wallet-bala…
ibraheem-abe Oct 9, 2024
861e4a5
Fixes network instantiation in root list-delegates
ibraheem-abe Oct 9, 2024
df20a06
Merge pull request #173 from opentensor/fix/root-delegate-network
ibraheem-abe Oct 10, 2024
5c89e8c
Adds a utils app with a single subcommand (convert) to easily convert…
thewhaleking Oct 10, 2024
3e16772
Better UX
thewhaleking Oct 10, 2024
c3fb1b8
Merge pull request #174 from opentensor/experimental/thewhaleking/uti…
ibraheem-abe Oct 10, 2024
f36deb0
Fixes for rpc request error handler, root list default empty values, …
thewhaleking Oct 10, 2024
2a2bb38
Bumps version, updates requirement
ibraheem-abe Oct 10, 2024
833a651
Bumps wallet version to 2.0.2
ibraheem-abe Oct 10, 2024
9c32e03
Merge pull request #176 from opentensor/update/requirements/btwallet
ibraheem-abe Oct 10, 2024
b17b1a1
Updates changelog and bumps version
ibraheem-abe Oct 10, 2024
a9cd8f8
Merge pull request #177 from opentensor/release/820-updates-changelog
ibraheem-abe Oct 10, 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.2.0 /2024-10-10

## What's Changed
* Handle git not installed by @thewhaleking in https://github.com/opentensor/btcli/pull/164
* Handle receiving task cancellation by @thewhaleking in https://github.com/opentensor/btcli/pull/166
* Change network option to a list so that it can be correctly parsed if multiple options are given by @thewhaleking in https://github.com/opentensor/btcli/pull/165
* Receiving task cancellation improvement by @thewhaleking in https://github.com/opentensor/btcli/pull/168
* mnemonic change: support numbered mnemonic by @thewhaleking in https://github.com/opentensor/btcli/pull/167
* Backmerge release 8.1.1 by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/169
* Handle custom errors from subtensor by @thewhaleking in https://github.com/opentensor/btcli/pull/79
* Removes check for port in chain endpoint by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/170
* Shifts Tao conversion to correct place in stake remove by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/172
* Adds support for ss58 addresses in wallet balance by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/171
* Fixes network instantiation in root list-delegates by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/173
* Utils App with convert command by @thewhaleking in https://github.com/opentensor/btcli/pull/174
* Fixes for rpc request error handler, root list default empty values, prev delegate fetching by @thewhaleking in https://github.com/opentensor/btcli/pull/175
* Bumps version, updates requirement for 8.1.2 by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/176

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

## 8.1.1 /2024-10-04

## 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.1.1"
__version__ = "8.2.0"

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