Skip to content

Commit

Permalink
BUMP: version 3.2.9 → 3.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 12, 2024
1 parent 2306d1d commit fbe30af
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 3.2.10 (2024-09-12)

### Fixes

- Test script ([200015a](https://github.com/kpn/cz-kpn/commit/200015af6145b42a5188ebef8b5f95a4fbaaca59))
- Ignore type hints ([7c603e5](https://github.com/kpn/cz-kpn/commit/7c603e536b9245d196f5d5f00f64ece613c0cc0e))

### Improvements

- Bump deps ([19d2503](https://github.com/kpn/cz-kpn/commit/19d250351fdfc2a8f73c38b51ecee98f233aecc1))

## 3.2.9 (2024-04-25)

### Fixes
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.9 'cz ls'
docker run --rm -v $(pwd):/app -w /app --name cz-kpn kpnnl/cz-kpn:3.2.10 '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.9"]
RUN ["pip", "install", "-U", "--no-cache-dir", "cz-kpn==3.2.10"]
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.9 $cmd
docker run --rm -it -v $(pwd):/app kpnnl/cz-kpn:3.2.10 $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.9"
version = "3.2.10"
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.9 .
docker build -t kpnnl/cz-kpn:3.2.10 .

0 comments on commit fbe30af

Please sign in to comment.