Skip to content

Commit 8922cb5

Browse files
Merge pull request #2726 from opentensor/changelog/904
Bumps version and changelog + updates release script
2 parents 088e274 + 6a8f904 commit 8922cb5

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install build wheel twine
26+
pip install setuptools wheel twine build toml
2727
2828
- name: Build package
29-
run: python setup.py sdist bdist_wheel
29+
run: python -m build --sdist --wheel --outdir dist/
3030

3131
- name: Check if package version already exists
3232
run: |
33-
PACKAGE_NAME=$(python setup.py --name)
33+
PACKAGE_NAME=$(python -c "import toml; print(toml.load('pyproject.toml')['project']['name'])")
3434
PACKAGE_VERSION=${{ github.event.inputs.version }}
3535
if twine check dist/*; then
3636
if pip install $PACKAGE_NAME==$PACKAGE_VERSION; then

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 9.0.4 /2025-03-06
4+
5+
## What's Changed
6+
* Release/9.0.3 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2712
7+
* improve `wait_for_node_start` until 20 mins by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2714
8+
* More E2E tests by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2678
9+
* fix(2715): use ChainIdentity for identities by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2718
10+
* Metagraph use block correctly in `_get_all_stakes_from_chain` by @thewhaleking in https://github.com/opentensor/bittensor/pull/2719
11+
* Integration tests for async-substrate-interface 1.0.4 compatibility by @thewhaleking in https://github.com/opentensor/bittensor/pull/2720
12+
* Backmerge main staging 904 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2721
13+
* Skip E2E test_children by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2723
14+
* More Subtensor unnitests by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2713
15+
* Change to pyproject.toml by @thewhaleking in https://github.com/opentensor/bittensor/pull/2504
16+
* Updates test_incentive by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2722
17+
* Use uv for gh actions by @thewhaleking in https://github.com/opentensor/bittensor/pull/2503
18+
* Bumps async substrate interface by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2725
19+
20+
**Full Changelog**: https://github.com/opentensor/bittensor/compare/v9.0.3...v9.0.4
21+
322
## 9.0.3 /2025-02-26
423

524
## What's Changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.0.3
1+
9.0.4

bittensor/core/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "9.0.3"
1+
__version__ = "9.0.4"
22

33
import os
44
import re

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bittensor"
7-
version = "9.0.3"
7+
version = "9.0.4"
88
description = "Bittensor"
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)