Skip to content

Commit 490e3bb

Browse files
committed
bump to version 0.2.3
1 parent 5ae0fc8 commit 490e3bb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG

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

3+
## 0.2.3
4+
- Fixed default testnet node url
5+
36
## 0.2.2
47
- Changed unit name
8+
59
## 0.2.1
610
- Ported to Torus network

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "torusdk"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
description = "Torus network official CLI"
55
authors = ["renlabs <[email protected]>"]
66
license = "MIT"

src/torusdk/_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ComxSettings(BaseSettings):
3636
NODE_URLS: list[str] = [
3737
"wss://api.torus.network",
3838
]
39-
TESTNET_NODE_URLS: list[str] = ["wss://testnet.api.torus.network"]
39+
TESTNET_NODE_URLS: list[str] = ["wss://api.testnet.torus.network"]
4040
UNIVERSAL_PASSWORD: SecretStr | None = None
4141
KEY_PASSWORDS: dict[str, SecretStr] | None = None
4242

0 commit comments

Comments
 (0)