From 6470627bf7a4d83772688f514ba35579177d94d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Apr 2024 07:42:59 +0000 Subject: [PATCH] =?UTF-8?q?BUMP:=20version=203.2.6=20=E2=86=92=203.2.7?= 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 0e9e8a1..59ea479 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.2.7 (2024-04-25) + +### Improvements + +- Use ruff latest and mypy ([d89f25e](https://github.com/kpn/cz-kpn/commit/d89f25e7613cfd7c993fd5ef68da91187c9c4321)) + ## 3.2.6 (2024-04-25) ### Improvements diff --git a/CONTIRBUTING.md b/CONTIRBUTING.md index c2cff12..01e0e5f 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.6 'cz ls' +docker run --rm -v $(pwd):/app -w /app --name cz-kpn kpnnl/cz-kpn:3.2.7 'cz ls' ``` ### Testing diff --git a/Dockerfile b/Dockerfile index 0329057..797ef61 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.6"] +RUN ["pip", "install", "-U", "--no-cache-dir", "cz-kpn==3.2.7"] ##### run ENTRYPOINT [ "/bin/sh", "-c" ] diff --git a/pyproject.toml b/pyproject.toml index b9f2f2e..b8c37b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cz-kpn" -version = "3.2.6" +version = "3.2.7" description = "commitizen with kpn style" authors = ["Santiago Fraire Willemoes "] license = "MIT" diff --git a/scripts/build b/scripts/build index 42ac4fa..073f705 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.6 . +docker build -t kpnnl/cz-kpn:3.2.7 .