Skip to content

Commit

Permalink
BUMP: version 3.2.0 → 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 8, 2023
1 parent d29c7d0 commit 39bc1f8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 3.2.1 (2023-09-08)

### Fixes

- Update dependencies ([d29c7d0](https://github.com/kpn/cz-kpn/commit/d29c7d0482e5c80ef0defcbfc4cc51f5ff18ca74))
- Add cz-kpn to github action ([54b9239](https://github.com/kpn/cz-kpn/commit/54b9239cd62538462adb9ce39b565bf7bab7fd36))

### Improvements

- Add repo badges ([568ad62](https://github.com/kpn/cz-kpn/commit/568ad62dc6fbe03ca415dcecb6c7d50458eab67d))
- Update pyproject.toml ([8ff761d](https://github.com/kpn/cz-kpn/commit/8ff761d9530654fbeb3112120ed09aed3a196a1b))
- Docker release ([4d8323c](https://github.com/kpn/cz-kpn/commit/4d8323c0d7ed922eb4b71dbf80065b361c7d2811))

## 3.2.0 (2023-09-08)

### Features
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.0 'cz ls'
docker run --rm -v $(pwd):/app -w /app --name cz-kpn kpnnl/cz-kpn:3.2.1 '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.0"]
RUN ["pip", "install", "-U", "--no-cache-dir", "cz-kpn==3.2.1"]

##### run
ENTRYPOINT [ "/bin/sh", "-c" ]
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.0"
version = "3.2.1"
description = "commitizen with kpn style"
authors = ["Santiago Fraire Willemoes <santiago.fraire@kpn.com>"]
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.0 .
docker build -t kpnnl/cz-kpn:3.2.1 .

0 comments on commit 39bc1f8

Please sign in to comment.