Skip to content

Commit

Permalink
BUMP: version 3.2.8 → 3.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 25, 2024
1 parent 3c077b5 commit 4294810
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 3.2.9 (2024-04-25)

### Fixes

- Set safe dir in docker image ([4c8f508](https://github.com/kpn/cz-kpn/commit/4c8f508b496c9f6e4371dfd1a9ce986a510aa05b))

### Improvements

- Update README ([3c077b5](https://github.com/kpn/cz-kpn/commit/3c077b54739507eb7c07ffdc3f7fcaeeb81da5a8))

## 3.2.8 (2024-04-25)

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion CONTIRBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8 'cz ls'
docker run --rm -v $(pwd):/app -w /app --name cz-kpn kpnnl/cz-kpn:3.2.9 'cz ls'
```

### Testing
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.8"]
RUN ["pip", "install", "-U", "--no-cache-dir", "cz-kpn==3.2.9"]
RUN ["git", "config", "--global", "--add", "safe.directory", "/app"]

##### run
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ cz c
```sh
cmd="cz -n cz_kpn commit"
docker run --rm -it -v $(pwd):/app kpnnl/cz-kpn:3.2.8 $cmd
docker run --rm -it -v $(pwd):/app kpnnl/cz-kpn:3.2.9 $cmd
```
## Features
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cz-kpn"
version = "3.2.8"
version = "3.2.9"
description = "commitizen with kpn style"
authors = ["Santiago Fraire Willemoes <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -ex
# scope: local development

docker build -t kpnnl/cz-kpn:3.2.8 .
docker build -t kpnnl/cz-kpn:3.2.9 .

0 comments on commit 4294810

Please sign in to comment.