Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 440,
spec_version: 441,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
2 changes: 1 addition & 1 deletion sdk/bittensor-core-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "maturin"
name = "bittensor-core"
# Static (not read from Cargo.toml) so the release train can stamp PEP 440
# rc/dev suffixes that cargo's semver would reject.
version = "0.1.1"
version = "0.1.2"
description = "The chain-defined compute core for Bittensor clients: sp-core keys, keyfiles, drand timelock, ML-KEM, SCALE codec, and RFC-0078 metadata digest, built from the bittensor monorepo"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "bittensor"
version = "11.0.1.dev0"
version = "11.0.2.dev0"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[MEDIUM] Regenerate the Python lockfile after both version bumps

sdk/python/uv.lock still identifies the editable bittensor package as 11.0.1.dev0 and the local bittensor-core package as 0.1.1. CI runs uv sync --locked, which rejects a lockfile that is stale relative to these project files. Run uv lock from sdk/python/ and commit the resulting lockfile updates for both packages.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[MEDIUM] Regenerate the Python lockfile after both version bumps

sdk/python/uv.lock still records the local bittensor package as 11.0.1.dev0 and bittensor-core as 0.1.1. Regenerate and commit the lockfile after these metadata changes so locked uv operations resolve the release versions consistently.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[MEDIUM] Regenerate the Python lockfile after both version bumps

sdk/python/uv.lock still records the local bittensor package as 11.0.1.dev0 and bittensor-core as 0.1.1, while this PR changes them to 11.0.2.dev0 and 0.1.2. Regenerate and commit the lockfile so locked uv operations remain consistent with both manifests.

description = "A lean Python SDK (import bittensor) and CLI (btcli) for the Bittensor chain."
readme = "README.md"
requires-python = ">=3.10,<3.15"
Expand Down
Loading