Skip to content

Commit 8f0d988

Browse files
author
github-actions
committed
1.10.0
Automatically generated by python-semantic-release
1 parent e913ad5 commit 8f0d988

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33

44

5+
## v1.10.0 (2025-07-16)
6+
7+
###
8+
9+
* <bot> update dependencies*.log files(s) ([`e913ad5`](https://github.com/WIPACrepo/rest-tools/commit/e913ad5b6da20eae7b4d9ef32469e0e8e6c8a67d))
10+
11+
### [minor]
12+
13+
* [minor] allow EC algorithms, and add more typing (#161)
14+
15+
Allow EllipticCurve cryptography, mostly in `utils.auth`.
16+
Allow `store_tokens` to be awaitable.
17+
Add more typing in several places to make pylance happy.
18+
19+
---------
20+
21+
Co-authored-by: github-actions <github-actions@github.com> ([`da30370`](https://github.com/WIPACrepo/rest-tools/commit/da3037023ee0efd6c16802a6d7d60f1c2140b352))
22+
23+
524
## v1.9.0 (2025-07-08)
625

726
### [minor]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
version = "1.9.0"
6+
version = "1.10.0"
77
dependencies = ["cachetools", "pyjwt[crypto]!=2.6.0", "qrcode", "requests", "requests-futures", "tornado", "urllib3>=2.0.4", "wipac-dev-tools"]
88
name = "wipac-rest-tools"
99
description = "REST tools in python - common code for client and server"

rest_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# is zero for an official release, positive for a development branch,
1515
# or negative for a release candidate or beta (after the base version
1616
# number has been incremented)
17-
__version__ = "1.9.0"
17+
__version__ = "1.10.0"
1818
version_info = (
1919
int(__version__.split(".")[0]),
2020
int(__version__.split(".")[1]),

0 commit comments

Comments
 (0)