Skip to content

Commit

Permalink
🔖 Release 0.15.0
Browse files Browse the repository at this point in the history
**Changed**
- Highly simplified ``_crypto`` module based on upstream work PR 457
- Bump upper bound ``cryptography`` version to 42.x

**Fixed**
- Mitigate deprecation originating from ``cryptography`` about datetime naïve timezone
  • Loading branch information
Ousret committed Feb 1, 2024
1 parent ea74536 commit 7bbe9c1
Show file tree
Hide file tree
Showing 12 changed files with 159 additions and 398 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
0.15.0 (2023-02-01)
===================

**Changed**
- Highly simplified ``_crypto`` module based on upstream work https://github.com/aiortc/aioquic/pull/457
- Bump upper bound ``cryptography`` version to 42.x

**Fixed**
- Mitigate deprecation originating from ``cryptography`` about datetime naïve timezone.

0.14.0 (2023-11-11)
===================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ classifiers = [
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"cryptography>=41.0.0,<42.0.0",
"cryptography>=41.0.0,<43",
]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion src/qh3/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.14.0"
__version__ = "0.15.0"
Loading

0 comments on commit 7bbe9c1

Please sign in to comment.