Skip to content

Commit 756b2f9

Browse files
committed
Release v0.2.4: Update dependencies to latest versions
- Updated aiodns: 3.4.0 → 3.5.0 - Updated aiohttp: 3.12.0 → 3.12.13 - Updated pytest: 8.3.5 → 8.4.0 - Updated pytest-cov: 6.1.1 → 6.2.1 - Updated ruff: 0.11.11 → 0.11.13 - All tests pass with updated dependencies
1 parent 9149d20 commit 756b2f9

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

CHANGELOG.md

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

3+
## [0.2.4] - 2025-06-16
4+
5+
### Changed
6+
- Updated dependencies to latest versions:
7+
- aiodns: 3.4.0 → 3.5.0
8+
- aiohttp: 3.12.0 → 3.12.13
9+
- pytest: 8.3.5 → 8.4.0
10+
- pytest-cov: 6.1.1 → 6.2.1
11+
- ruff: 0.11.11 → 0.11.13
12+
- All tests pass with updated dependencies
13+
314
## [0.2.1] - 2025-05-03
415

516
### Fixed

aiowhitebit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"""
66

77
# Version information
8-
__version__ = "0.2.3"
8+
__version__ = "0.2.4"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "aiowhitebit"
7-
version = "0.2.3"
7+
version = "0.2.4"
88
description = "Async Python client for WhiteBit API"
99
readme = "README.md"
1010
authors = [
@@ -24,8 +24,8 @@ classifiers = [
2424
]
2525
keywords = ["whitebit", "crypto", "exchange", "api", "async", "trading"]
2626
dependencies = [
27-
"aiohttp==3.12.0",
28-
"aiodns==3.4.0",
27+
"aiohttp==3.12.13",
28+
"aiodns==3.5.0",
2929
"uvloop==0.21.0",
3030
"pydantic>=2.0.0,<3.0.0", # Only support Pydantic v2
3131
"websockets==15.0.1",

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ pre-commit==4.2.0
66
pyright==1.1.401
77

88
# Testing
9-
pytest==8.3.5
9+
pytest==8.4.0
1010
pytest-asyncio==1.0.0
11-
pytest-cov==6.1.1
11+
pytest-cov==6.2.1
1212

1313
# Code Quality
14-
ruff==0.11.11
14+
ruff==0.11.13
1515
twine==6.1.0

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
aiodns==3.4.0
2-
aiohttp==3.12.0
1+
aiodns==3.5.0
2+
aiohttp==3.12.13
33
multidict==6.4.4
44
pydantic>=2.0.0,<3.0.0
55
uvloop==0.21.0

0 commit comments

Comments
 (0)