From 8cee51302f52028b84a8aaa815ca45b8894b7130 Mon Sep 17 00:00:00 2001 From: ibraheem-opentensor Date: Wed, 9 Apr 2025 12:55:46 -0700 Subject: [PATCH] Bumps version and changelog --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ VERSION | 2 +- bittensor/core/settings.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 34 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15214fcf88..84d7c10774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/VERSION b/VERSION index 85f864fe85..4d0ffae7b5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -9.2.0 \ No newline at end of file +9.3.0 \ No newline at end of file diff --git a/bittensor/core/settings.py b/bittensor/core/settings.py index 8a53f6c423..d3b68c04d3 100644 --- a/bittensor/core/settings.py +++ b/bittensor/core/settings.py @@ -1,4 +1,4 @@ -__version__ = "9.2.0" +__version__ = "9.3.0" import os import re diff --git a/pyproject.toml b/pyproject.toml index c77f7280e7..2232e33960 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ @@ -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" ]