Skip to content

Commit 09d621f

Browse files
author
github-actions
committed
1.9.0
Automatically generated by python-semantic-release
1 parent 1221028 commit 09d621f

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

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

33

44

5+
## v1.9.0 (2025-07-08)
6+
7+
### [minor]
8+
9+
* [minor] switch to using basic auth for client secret (#160)
10+
11+
Switch to using basic auth for client secret, as this is more in line
12+
with the RFC and more secure.
13+
14+
Also bump the Python minimum version to 3.9.
15+
16+
---------
17+
18+
Co-authored-by: ric-evans <emejqz@gmail.com>
19+
Co-authored-by: github-actions <github-actions@github.com> ([`1221028`](https://github.com/WIPACrepo/rest-tools/commit/1221028980bf1cadc504f5ee6647eae680fe7847))
20+
21+
522
## v1.8.7 (2025-04-15)
623

724
###

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.8.7"
6+
version = "1.9.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.8.7"
17+
__version__ = "1.9.0"
1818
version_info = (
1919
int(__version__.split(".")[0]),
2020
int(__version__.split(".")[1]),

0 commit comments

Comments
 (0)