Skip to content

release/3.0.7 #125

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

Merged
merged 10 commits into from
Apr 3, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: PyO3/maturin-action@v1.44.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13
sccache: 'true'
manylinux: auto
before-script-linux: (apt-get update && apt-get install -y apt-utils && apt-get install -y pkg-config libssl-dev) || (yum install openssl openssl-devel -y)
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
uses: PyO3/maturin-action@v1.44.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down
30 changes: 30 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## 3.0.7 /2025-04-03

## What's Changed
* Fixes, improvement, refactoring by @roman-opentensor in https://github.com/opentensor/btwallet/pull/124

**Full Changelog**: https://github.com/opentensor/btwallet/compare/v3.0.6...v3.0.7

## 3.0.6 /2025-04-02

## What's Changed
* Improve release workflow by @roman-opentensor in #122

**Full Changelog**: https://github.com/opentensor/btwallet/compare/v3.0.5...v3.0.6

## 3.0.5 /2025-04-02

## What's Changed
* BT Wallet v.3 (python improvement) by @roman-opentensor in #105
* Test workflow by @igorsyl in #104
* Add skip-check-rust label check in .github/workflows/check-rust.yml workflow by @roman-opentensor in #110
* Fix wallet.create_coldkey_from_uri broken by @roman-opentensor in #109
* Add workflows for run SDK and BTCLI tests if labels are applied by @roman-opentensor in #106
* Add back srt and repr for Wallet and Keypair by @roman-opentensor in #111
* Add trigger for check-rust workflow by @roman-opentensor in #113
* Update readme by @roman-opentensor in #112
* Update docker image name by @roman-opentensor in #114
* fix returns for rust and pyi by @roman-opentensor in #119

**Full Changelog**: https://github.com/opentensor/btwallet/compare/v3.0.4...v3.0.5

## 3.0.4 /2025-02-19

## What's Changed
Expand Down
4 changes: 1 addition & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bittensor_wallet"
version = "3.0.6"
version = "3.0.7"
edition = "2021"

[lib]
Expand All @@ -12,7 +12,6 @@ crate-type = ["cdylib", "rlib"]
sp-core = "34.0.0"
pyo3 = { version = "0.22.4", features = ["gil-refs"] }
bip39 = { version = "2.0.0", features = ["rand"] }
rand = "0.8.5"
hex = "0.4.3"
colored = "2.1.0"
serde_json = "1.0.128"
Expand All @@ -26,7 +25,6 @@ dirs = "5.0.1"
serde = { version = "1.0.210", features = ["derive"] }
base64 = "0.22.1"
scrypt = "0.11.0"
pkcs8 = "0.10.2"
schnorrkel = "0.11.4"
shellexpand = "3.1.0"
rpassword = "7.3.1"
Expand Down
5 changes: 4 additions & 1 deletion bittensor_wallet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import importlib.metadata

from bittensor_wallet.bittensor_wallet import (
Config,
Keyfile,
Expand Down Expand Up @@ -25,4 +27,5 @@
utils = utils
wallet = wallet

__version__ = "3.0.2"
# bump version in `pyproject.toml` only
__version__ = importlib.metadata.version("bittensor-wallet")
Loading
Loading