From dfb65fddf0f6f46811184c0feae50cdb1bb0ddc2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 15 Apr 2024 09:22:27 +0000 Subject: [PATCH] =?UTF-8?q?BUMP:=20version=203.2.4=20=E2=86=92=203.2.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ CONTIRBUTING.md | 2 +- Dockerfile | 2 +- pyproject.toml | 2 +- scripts/build | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8f3cdb..f6816b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.2.5 (2024-04-15) + +### Fixes + +- release pipeline ([1ab09a8](https://github.com/kpn/cz-kpn/commit/1ab09a840ba1e83ed57f524b5dba7fd385940ab0)) + ## 3.2.4 (2024-01-03) ### Improvements diff --git a/CONTIRBUTING.md b/CONTIRBUTING.md index ace6a69..a4e51a5 100644 --- a/CONTIRBUTING.md +++ b/CONTIRBUTING.md @@ -27,7 +27,7 @@ poetry install ### Running docker locally ```bash -docker run --rm -v $(pwd):/app -w /app --name cz-kpn kpnnl/cz-kpn:3.2.4 'cz ls' +docker run --rm -v $(pwd):/app -w /app --name cz-kpn kpnnl/cz-kpn:3.2.5 'cz ls' ``` ### Testing diff --git a/Dockerfile b/Dockerfile index 0aef8ae..7723141 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app RUN apk add --update -t --no-cache git curl alpine-sdk RUN ["pip", "install", "-U", "--no-cache-dir", "pip"] -RUN ["pip", "install", "-U", "--no-cache-dir", "cz-kpn==3.2.4"] +RUN ["pip", "install", "-U", "--no-cache-dir", "cz-kpn==3.2.5"] ##### run ENTRYPOINT [ "/bin/sh", "-c" ] diff --git a/pyproject.toml b/pyproject.toml index 4d63b2d..8973dd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cz-kpn" -version = "3.2.4" +version = "3.2.5" description = "commitizen with kpn style" authors = ["Santiago Fraire Willemoes "] license = "MIT" diff --git a/scripts/build b/scripts/build index bcf49c9..9c6a997 100755 --- a/scripts/build +++ b/scripts/build @@ -1,4 +1,4 @@ #!/bin/sh -ex # scope: local development -docker build -t kpnnl/cz-kpn:3.2.4 . +docker build -t kpnnl/cz-kpn:3.2.5 .