Skip to content

Commit e10a9de

Browse files
Merge pull request #72 from opentensor/release/1.0.5
Release/1.0.5
2 parents 9f55757 + 2b5ffd7 commit e10a9de

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.0.5 /2025-03-06
4+
5+
## What's Changed
6+
* Fixes a memory leak by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/70
7+
* Backmerge main to staging 104 by @ibraheem-opentensor in https://github.com/opentensor/async-substrate-interface/pull/71
8+
9+
**Full Changelog**: https://github.com/opentensor/async-substrate-interface/compare/v1.0.4...v1.0.5
10+
311
## 1.0.4 /2025-03-05
412

513
## What's Changed

async_substrate_interface/sync_substrate.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,8 @@ def connect(self, init=False):
581581
if not self.ws.close_code:
582582
return self.ws
583583
else:
584-
return connect(self.chain_endpoint, max_size=self.ws_max_size)
584+
self.ws = connect(self.chain_endpoint, max_size=self.ws_max_size)
585+
return self.ws
585586

586587
def get_storage_item(
587588
self, module: str, storage_function: str, block_hash: str = None

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "async-substrate-interface"
3-
version = "1.0.4"
3+
version = "1.0.5"
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)