From 2ccdeca6314d0e9cb83f0dcf0dace28ad19a8738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Kreileder?= Date: Thu, 8 Feb 2024 20:58:54 +0100 Subject: [PATCH] Prepare v1.0.8 (#117) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Kreileder --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- CHANGELOG.md | 17 +++++++++++++++++ README.md | 6 +++--- src/cf_ips_to_hcloud_fw/version.py | 2 +- 4 files changed, 22 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e92cf0f..a904606 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,7 +24,7 @@ A clear and concise description of what actually happened. A clear and concise description of what you expected to happen. **Environment (please complete the following information):** - - cf-ips-to-hcloud-fw version: [e.g. 1.0.7] + - cf-ips-to-hcloud-fw version: [e.g. 1.0.8] - Deployment method: [e.g. Docker, Python module] - If Python module, Python Version: [e.g. 3.12] - If Python module, OS: [e.g. MacOS 14.3] diff --git a/CHANGELOG.md b/CHANGELOG.md index 9485a9e..03a62f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [v1.0.8] - 2024-02-08 + +### Added + +- Added CODECOV_TOKEN to Codecov action and cli.codecov to allowed endpoints + +### Changed + +- Updated Python base image in Dockerfile +- Upgraded `pyright` to 1.1.350, `ruff` & `ruff-pre-commit` to v0.2.1, `pydantic` to 2.6.1, and pip to 24.0 +- Updated `certifi`, `urllib3`, and pluggy versions +- Updated ruff and gitleaks pre-commit hooks and ruff configuration +- Bumped various GitHub actions and Docker actions +- Updated DOCKER_METADATA_ANNOTATIONS_LEVELS environment variable +- Bumped pytest from 7.4.4 to 8.0.0 +- Bumped version to 1.0.8-dev + ## [v1.0.7] - 2024-01-20 ### Added diff --git a/README.md b/README.md index 277eb7f..a3265bf 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,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.7 + jkreileder/cf-ips-to-hcloud-fw:1.0.8 ``` (Add `--pull=always` if you use a rolling image tag.) @@ -122,7 +122,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.7`: This tag points to the specific `1.0.7` release. +- `1.0.8`: This tag points to the specific `1.0.8` 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. @@ -171,7 +171,7 @@ spec: runAsUser: 65534 containers: - name: cf-ips-to-hcloud-fw - image: jkreileder/cf-ips-to-hcloud-fw:1.0.7 + image: jkreileder/cf-ips-to-hcloud-fw:1.0.8 # imagePullPolicy: Always # Uncomment this if you use a rolling image tag securityContext: allowPrivilegeEscalation: false diff --git a/src/cf_ips_to_hcloud_fw/version.py b/src/cf_ips_to_hcloud_fw/version.py index 6bc7fa4..b260c5f 100644 --- a/src/cf_ips_to_hcloud_fw/version.py +++ b/src/cf_ips_to_hcloud_fw/version.py @@ -1,3 +1,3 @@ from __future__ import annotations -__VERSION__ = "1.0.8-dev" +__VERSION__ = "1.0.8"