diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e75d83f4c..419a02a292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 9.11.0 /2025-09-25 + +## What's Changed +* Fix broken links in CONTRIBUTING.md by @Gimzou in https://github.com/opentensor/bittensor/pull/3041 +* Fix after `Rate limit hyperparams setting` by @basfroman in https://github.com/opentensor/bittensor/pull/3052 +* Fix SubtensorApi unit tests by @basfroman in https://github.com/opentensor/bittensor/pull/3054 +* add commitments data into metagraph by @basfroman in https://github.com/opentensor/bittensor/pull/3055 +* add getting OwnerHyperparamRateLimit in e2e test by @basfroman in https://github.com/opentensor/bittensor/pull/3059 +* update make file by @basfroman in https://github.com/opentensor/bittensor/pull/3058 +* `Subnet Mechanism` logic by @basfroman in https://github.com/opentensor/bittensor/pull/3056 +* let do less calculations on `get_subnet_price` by @basfroman in https://github.com/opentensor/bittensor/pull/3063 +* deps: update munch to prevent deprecation warning by @Arthurdw in https://github.com/opentensor/bittensor/pull/3061 + +## New Contributors +* @Gimzou made their first contribution in https://github.com/opentensor/bittensor/pull/3041 + +**Full Changelog**: https://github.com/opentensor/bittensor/compare/v9.10.1...v9.11.0 + ## 9.10.1 /2025-09-05 ## What's Changed diff --git a/pyproject.toml b/pyproject.toml index 786e0819e8..19b5eebaaf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "bittensor" -version = "9.10.1" +version = "9.11.0" description = "Bittensor" readme = "README.md" authors = [ @@ -35,7 +35,7 @@ dependencies = [ "uvicorn", "bittensor-drand>=1.0.0,<2.0.0", "bittensor-wallet>=4.0.0,<5.0", - "async-substrate-interface>=1.5.1" + "async-substrate-interface>=1.5.4" ] [project.optional-dependencies] @@ -65,7 +65,7 @@ torch = [ "torch>=1.13.1,<3.0" ] cli = [ - "bittensor-cli>=9.0.2" + "bittensor-cli>=9.11.2" ]