Skip to content

Commit 3c209e4

Browse files
authored
Merge pull request #17 from opentensor/release/1.0.0rc6
Fixes _metadata_cache, bumps version and changelog
2 parents 7b19eea + fc20e49 commit 3c209e4

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.0.0rc6 /2025-01-28
4+
5+
## What's Changed
6+
* Minor bug fix
7+
38
## 1.0.0rc5 /2025-01-28
49

510
## What's Changed

async_substrate_interface/async_substrate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ def __init__(
699699
self.runtime_config = RuntimeConfigurationObject(
700700
ss58_format=self.ss58_format, implements_scale_info=True
701701
)
702-
self.__metadata_cache = {}
702+
self._metadata_cache = {}
703703
self._nonces = {}
704704
self.metadata_version_hex = "0x0f000000" # v15
705705
self.reload_type_registry()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "async-substrate-interface"
3-
version = "1.0.0rc5"
3+
version = "1.0.0rc6"
44
description = "Asyncio library for interacting with substrate. Mostly API-compatible with py-substrate-interface"
55
readme = "README.md"
66
license = { file = "LICENSE" }

0 commit comments

Comments
 (0)