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
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## 9.3.0 /2025-04-09

## What's Changed
* More E2E tests by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2754
* Fix E2E: fix wait_epoch and next_tempo by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2753
* Add all supported python versions to e2e tests workflow by @basfroman in https://github.com/opentensor/bittensor/pull/2761
* update docker image name by @basfroman in https://github.com/opentensor/bittensor/pull/2760
* Add pypi package version checker for `python -m bittensor` by @basfroman in https://github.com/opentensor/bittensor/pull/2762
* Feat: set_children and get_pending_children methods by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2752
* Add logic for keep docker image up to date by @basfroman in https://github.com/opentensor/bittensor/pull/2765
* Fix: CI/CD Set up Python version for E2E tests by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2767
* Fix E2E Tests: wait for new nonce by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2768
* Fix e2e `conftest.py` for legacy runner by @basfroman in https://github.com/opentensor/bittensor/pull/2769
* Fix E2E with devnet-ready by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2776
* Add compatibility check for 3.13 by @thewhaleking in https://github.com/opentensor/bittensor/pull/2779
* Fix E2E test_dendrite by making sure Alice is Top validator in Subnet by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2780
* Add get_owned_hotkeys to subtensor and async one + tests by @basfroman in https://github.com/opentensor/bittensor/pull/2766
* Add drand-commitments by @basfroman in https://github.com/opentensor/bittensor/pull/2781
* Missing f-string format by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2785
* bump version by @basfroman in https://github.com/opentensor/bittensor/pull/2786
* Improvement and fix for https://github.com/opentensor/bittensor/pull/2781 by @basfroman in https://github.com/opentensor/bittensor/pull/2787
* Add `stop_existing_test_containers` logic before run e2e test/s by @basfroman in https://github.com/opentensor/bittensor/pull/2790
* Bump async substrate interface by @thewhaleking in https://github.com/opentensor/bittensor/pull/2788
* Improve CRv3 functionality by @basfroman in https://github.com/opentensor/bittensor/pull/2791
* Improve logic in Balance magic methods by @basfroman in https://github.com/opentensor/bittensor/pull/2764
* Requirements update by @thewhaleking in https://github.com/opentensor/bittensor/pull/2789
* remove Levenshtein requirement by @thewhaleking in https://github.com/opentensor/bittensor/pull/2802

**Full Changelog**: https://github.com/opentensor/bittensor/compare/v9.2.0...v9.3.0

## 9.2.0 /2025-03-18

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.2.0
9.3.0
2 changes: 1 addition & 1 deletion bittensor/core/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "9.2.0"
__version__ = "9.3.0"

import os
import re
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bittensor"
version = "9.2.0"
version = "9.3.0"
description = "Bittensor"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -34,7 +34,7 @@ dependencies = [
"scalecodec==1.2.11",
"uvicorn",
"bittensor-commit-reveal>=0.3.1",
"bittensor-wallet>=3.0.7",
"bittensor-wallet>=3.0.8",
"async-substrate-interface>=1.1.0"
]

Expand Down
Loading