From 820667e287de165f191ab49ff608fa396535367c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Apr 2024 07:19:00 +0000 Subject: [PATCH] =?UTF-8?q?BUMP:=20version=203.2.5=20=E2=86=92=203.2.6?= 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 f6816b9..0e9e8a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.2.6 (2024-04-25) + +### Improvements + +- Increase wait time to release to docker ([178af5e](https://github.com/kpn/cz-kpn/commit/178af5e32943be5d57e5a1f69d6fcc85de06b8a8)) + ## 3.2.5 (2024-04-15) ### Fixes diff --git a/CONTIRBUTING.md b/CONTIRBUTING.md index a4e51a5..c2cff12 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.5 'cz ls' +docker run --rm -v $(pwd):/app -w /app --name cz-kpn kpnnl/cz-kpn:3.2.6 'cz ls' ``` ### Testing diff --git a/Dockerfile b/Dockerfile index 7723141..0329057 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.5"] +RUN ["pip", "install", "-U", "--no-cache-dir", "cz-kpn==3.2.6"] ##### run ENTRYPOINT [ "/bin/sh", "-c" ] diff --git a/pyproject.toml b/pyproject.toml index 8973dd4..e52ff75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cz-kpn" -version = "3.2.5" +version = "3.2.6" description = "commitizen with kpn style" authors = ["Santiago Fraire Willemoes "] license = "MIT" diff --git a/scripts/build b/scripts/build index 9c6a997..42ac4fa 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.5 . +docker build -t kpnnl/cz-kpn:3.2.6 .