crypto-ws-api 2.1.8__tar.gz → 2.1.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/CHANGELOG.md +12 -0
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/PKG-INFO +7 -7
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/crypto_ws_api/__init__.py +1 -1
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/pyproject.toml +6 -6
- crypto_ws_api-2.1.11/requirements.txt +6 -0
- crypto_ws_api-2.1.8/requirements.txt +0 -6
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/.deepsource.toml +0 -0
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/LICENSE.md +0 -0
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/README.md +0 -0
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/crypto_ws_api/demo.py +0 -0
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/crypto_ws_api/ws_api.toml.template +0 -0
- {crypto_ws_api-2.1.8 → crypto_ws_api-2.1.11}/crypto_ws_api/ws_session.py +0 -0
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 2.1.11 - 2026-07-25
|
|
2
|
+
🔧 chore(pyproject.toml): pin dependencies to specific versions for consistency
|
|
3
|
+
🔧 chore(requirements.txt): pin dependencies to specific versions for consistency
|
|
4
|
+
|
|
5
|
+
## 2.1.10 - 2026-07-24
|
|
6
|
+
🔧 chore(pyproject.toml): update dependencies to latest versions for platformdirs, websockets, ujson, and cryptography
|
|
7
|
+
🔧 chore(requirements.txt): synchronize dependency versions with pyproject.toml for consistency
|
|
8
|
+
|
|
9
|
+
## 2.1.9 - 2026-04-28
|
|
10
|
+
🔧 fix(requirements): update `platformdirs` to version 4.9.6 and `cryptography` to version 46.0.7
|
|
11
|
+
📝 docs(changelog): add release notes for version 2.1.9
|
|
12
|
+
|
|
1
13
|
## 2.1.8 - 2026-04-03
|
|
2
14
|
🔧 fix(requirements): update `ujson` to version 5.12.0 and `cryptography` to version 46.0.6
|
|
3
15
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: crypto-ws-api
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.11
|
|
4
4
|
Summary: Crypto WS API connector for ASYNC requests
|
|
5
5
|
Author-email: Jerry Fedorenko <jerry.fedorenko@yahoo.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -11,12 +11,12 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
11
11
|
Classifier: Operating System :: Unix
|
|
12
12
|
Classifier: Operating System :: Microsoft :: Windows
|
|
13
13
|
Classifier: Operating System :: MacOS
|
|
14
|
-
Requires-Dist: shortuuid
|
|
15
|
-
Requires-Dist: platformdirs==4.
|
|
16
|
-
Requires-Dist: toml
|
|
17
|
-
Requires-Dist: websockets==16.
|
|
18
|
-
Requires-Dist: ujson
|
|
19
|
-
Requires-Dist: cryptography==
|
|
14
|
+
Requires-Dist: shortuuid==1.0.13
|
|
15
|
+
Requires-Dist: platformdirs==4.10.1
|
|
16
|
+
Requires-Dist: toml==0.10.2
|
|
17
|
+
Requires-Dist: websockets==16.1.1
|
|
18
|
+
Requires-Dist: ujson==5.13.0
|
|
19
|
+
Requires-Dist: cryptography==49.0.0
|
|
20
20
|
Project-URL: Source, https://github.com/DogsTailFarmer/crypto-ws-api
|
|
21
21
|
|
|
22
22
|
<h1 align="center"><img align="center" src="https://user-images.githubusercontent.com/77513676/250364389-cbedc171-a930-4467-a0cd-21627a6a41ed.svg" width="75">Crypto WS API connector for ASYNC requests</h1>
|
|
@@ -13,7 +13,7 @@ __maintainer__ = "Jerry Fedorenko"
|
|
|
13
13
|
__contact__ = "https://github.com/DogsTailFarmer"
|
|
14
14
|
__email__ = "jerry.fedorenko@yahoo.com"
|
|
15
15
|
__credits__ = ["https://github.com/DanyaSWorlD"]
|
|
16
|
-
__version__ = "2.1.
|
|
16
|
+
__version__ = "2.1.11"
|
|
17
17
|
|
|
18
18
|
from pathlib import Path
|
|
19
19
|
import shutil
|
|
@@ -17,12 +17,12 @@ dynamic = ["version", "description"]
|
|
|
17
17
|
requires-python = ">=3.10"
|
|
18
18
|
|
|
19
19
|
dependencies = [
|
|
20
|
-
"shortuuid
|
|
21
|
-
"platformdirs==4.
|
|
22
|
-
"toml
|
|
23
|
-
"websockets==16.
|
|
24
|
-
"ujson
|
|
25
|
-
"cryptography==
|
|
20
|
+
"shortuuid==1.0.13",
|
|
21
|
+
"platformdirs==4.10.1",
|
|
22
|
+
"toml==0.10.2",
|
|
23
|
+
"websockets==16.1.1",
|
|
24
|
+
"ujson==5.13.0",
|
|
25
|
+
"cryptography==49.0.0"
|
|
26
26
|
]
|
|
27
27
|
|
|
28
28
|
[tool.flit.module]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|