Skip to content

Commit a9f8256

Browse files
authored
Prepare v1.0.16 (#842)
Signed-off-by: Jürgen Kreileder <jk@blackdown.de>
1 parent 0f96396 commit a9f8256

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ A clear and concise description of what actually happened.
2424
A clear and concise description of what you expected to happen.
2525

2626
**Environment (please complete the following information):**
27-
- cf-ips-to-hcloud-fw version: [e.g. 1.0.15]
27+
- cf-ips-to-hcloud-fw version: [e.g. 1.0.16]
2828
- Deployment method: [e.g. Docker, Python module]
2929
- If Python module, Python Version: [e.g. 3.13]
3030
- If Python module, OS: [e.g. MacOS 15.1]

CHANGELOG.md

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

3+
## [v1.0.16] – 2025-06-19
4+
5+
Maintenance release with dependency and CI updates.
6+
7+
- Updated Python and Docker base images
8+
- Bumped ruff, codeql-action, and other dependencies
9+
- Minor improvements to CI workflows
10+
311
## [v1.0.15] – 2024-12-22
412

513
Maintenance release with updated dependencies.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Here's an example using Docker:
113113
```shell
114114
docker run --rm \
115115
--mount type=bind,source=$(pwd)/config.yaml,target=/usr/src/app/config.yaml,readonly \
116-
jkreileder/cf-ips-to-hcloud-fw:1.0.15
116+
jkreileder/cf-ips-to-hcloud-fw:1.0.16
117117
```
118118
119119
(Add `--pull=always` if you use a rolling image tag.)
@@ -123,7 +123,7 @@ Docker images for `cf-ips-to-hcloud-fw` are available for both `linux/amd64` and
123123
124124
- `1`: This tag always points to the latest `1.x.x` release.
125125
- `1.0`: This tag always points to the latest `1.0.x` release.
126-
- `1.0.15`: This tag points to the specific `1.0.15` release.
126+
- `1.0.16`: This tag points to the specific `1.0.16` release.
127127
- `main`: This tag points to the most recent development version of
128128
`cf-ips-to-hcloud-fw`. Use this at your own risk as it may contain unstable
129129
changes.
@@ -172,7 +172,7 @@ spec:
172172
runAsUser: 65534
173173
containers:
174174
- name: cf-ips-to-hcloud-fw
175-
image: jkreileder/cf-ips-to-hcloud-fw:1.0.15
175+
image: jkreileder/cf-ips-to-hcloud-fw:1.0.16
176176
# imagePullPolicy: Always # Uncomment this if you use a rolling image tag
177177
securityContext:
178178
allowPrivilegeEscalation: false

src/cf_ips_to_hcloud_fw/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__VERSION__ = "1.0.16-dev"
3+
__VERSION__ = "1.0.16"

0 commit comments

Comments
 (0)