Skip to content

Commit

Permalink
Prepare v1.0.4
Browse files Browse the repository at this point in the history
Signed-off-by: Jürgen Kreileder <[email protected]>
  • Loading branch information
jkreileder committed Jan 1, 2024
1 parent 04f7633 commit eb404bb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [v1.0.4] - 2024-01-01

### Changed

- Improved log messages for better clarity and understanding.

### Performance Improvements

- Reduced Docker image size for faster download and deployment.

### Testing

- Added more tests to improve code coverage and reliability.

### Notes

- No functional changes were made in this release. The focus was on improvements and optimizations.

## [v1.0.3] - 2023-12-19

Remove caching from Docker build to work-around buildx bug.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Here's an example using Docker:
```shell
docker run --rm \
--mount type=bind,source=$(pwd)/config.yaml,target=/usr/src/app/config.yaml,readonly \
jkreileder/cf-ips-to-hcloud-fw:1.0.3
jkreileder/cf-ips-to-hcloud-fw:1.0.4
```
(Add `--pull=always` if you use a rolling image tag.)
Expand All @@ -106,7 +106,7 @@ Docker images for `cf-ips-to-hcloud-fw` are available for both `linux/amd64` and
- `1`: This tag always points to the latest `1.x.x` release.
- `1.0`: This tag always points to the latest `1.0.x` release.
- `1.0.3`: This tag points to the specific `1.0.3` release.
- `1.0.4`: This tag points to the specific `1.0.4` release.
- `main`: This tag points to the most recent development version of
`cf-ips-to-hcloud-fw`. Use this at your own risk as it may contain unstable
changes.
Expand Down Expand Up @@ -155,7 +155,7 @@ spec:
runAsUser: 65534
containers:
- name: cf-ips-to-hcloud-fw
image: jkreileder/cf-ips-to-hcloud-fw:1.0.3
image: jkreileder/cf-ips-to-hcloud-fw:1.0.4
# imagePullPolicy: Always # Uncomment this if you use a rolling image tag
securityContext:
allowPrivilegeEscalation: false
Expand Down
2 changes: 1 addition & 1 deletion src/cf_ips_to_hcloud_fw/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "1.0.4-dev"
__VERSION__ = "1.0.4"

0 comments on commit eb404bb

Please sign in to comment.