Skip to content

Commit 7b19eea

Browse files
authored
Merge pull request #14 from opentensor/release/1.0.0rc5
Release/1.0.0rc5
2 parents 009c96a + c6d11b6 commit 7b19eea

File tree

14 files changed

+4269
-1293
lines changed

14 files changed

+4269
-1293
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ 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: |
30+
python -m build --sdist --wheel --outdir dist/
3031
3132
- name: Check if package version already exists
3233
run: |
33-
PACKAGE_NAME=$(python setup.py --name)
34+
PACKAGE_NAME=$(python -c "import toml; print(toml.load('pyproject.toml')['project']['name'])")
3435
PACKAGE_VERSION=${{ github.event.inputs.version }}
3536
if twine check dist/*; then
3637
if pip install $PACKAGE_NAME==$PACKAGE_VERSION; then

CHANGELOG.md

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

3+
## 1.0.0rc5 /2025-01-28
4+
5+
## What's Changed
6+
* Backmerge staging main by @ibraheem-opentensor in https://github.com/opentensor/async-substrate-interface/pull/4
7+
* EventLoopManager, factory function by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/3
8+
* Exception for uninitialised by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/6
9+
* Update build/release to use pyproject.toml by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/10
10+
* Sync Substrate Rewritten by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/9
11+
* Remove ujson by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/12
12+
13+
## 1.0.0rc4 /2025-01-17
14+
15+
## What's Changed
16+
* Minor bug fixes and improvements
17+
318
## 1.0.0rc3 /2025-01-17
419

520
## What's Changed
Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
from .substrate_interface import (
1+
from .async_substrate import (
2+
AsyncQueryMapResult,
3+
AsyncSubstrateInterface,
24
AsyncExtrinsicReceipt,
3-
ExtrinsicReceipt,
5+
)
6+
from .sync_substrate import QueryMapResult, SubstrateInterface, ExtrinsicReceipt
7+
8+
__all__ = [
9+
AsyncQueryMapResult,
410
AsyncSubstrateInterface,
5-
SubstrateInterface,
11+
AsyncExtrinsicReceipt,
612
QueryMapResult,
7-
)
13+
SubstrateInterface,
14+
ExtrinsicReceipt,
15+
]

0 commit comments

Comments
 (0)