Skip to content

Commit 1986bfe

Browse files
committed
Merge branch 'release/0.8.1'
2 parents 7c32237 + 4f9cc93 commit 1986bfe

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.1] - 2024-12-17
9+
10+
### Fixed
11+
12+
- Relaxed version restriction on `httpx`
13+
14+
### Changed
15+
16+
- Test in CI using Gotenberg 8.14.1
17+
818
## [0.8.0] - 2024-12-11
919

1020
### Breaking Change

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ classifiers = [
3535
]
3636
dynamic = [ "version" ]
3737
dependencies = [
38-
"httpx[http2]~=0.28",
38+
"httpx[http2]>=0.27",
3939
"typing-extensions; python_version<'3.11'",
4040
]
4141

@@ -76,7 +76,7 @@ dependencies = [
7676
"pytest ~= 8.3; python_version >= '3.9'",
7777
"pytest-mock ~= 3.14",
7878
"pytest-randomly ~= 3.15",
79-
"pytest-rerunfailures ~= 14.0",
79+
"pytest-rerunfailures ~= 15.0",
8080
"pytest-xdist[psutil] ~= 3.6",
8181
]
8282
extra-dependencies = [

src/gotenberg_client/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2023-present Trenton H <[email protected]>
22
#
33
# SPDX-License-Identifier: MPL-2.0
4-
__version__ = "0.8.0"
4+
__version__ = "0.8.1"

tests/docker/docker-compose.ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ networks:
55
gotenberg-test-net:
66
services:
77
gotenberg-client-test-server:
8-
image: docker.io/gotenberg/gotenberg:8.11.0
8+
image: docker.io/gotenberg/gotenberg:8.14.1
99
networks:
1010
- gotenberg-test-net
1111
ports:

0 commit comments

Comments
 (0)