Skip to content

Commit

Permalink
bump: version 4.1.0 → 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl committed Sep 10, 2024
1 parent 17b8a2a commit 9acf617
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ commitizen:
name: cz_conventional_commits
tag_format: v$version
update_changelog_on_bump: true
version: 4.1.0
version: 4.1.1
version_files:
- README.md
version_scheme: semver
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v4.1.1 (2024-09-09)

### Refactor

- add pr-delete-branch input (#44)

## v4.1.0 (2024-09-01)

### Feat
Expand Down
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ GitHub action for using a matrix strategy to distribute the build for
```yml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
with:
registry-image: user/app
metadata-tags: |
Expand Down Expand Up @@ -90,6 +90,8 @@ requirements.
Defaults to `'chore(requirements): pip-compile upgrade'`. Optional.
- `pr-auto-merge` (`string`): Automatically merge only after necessary
requirements are met. Options: `'yes'`, `'no'`. Defaults to `'yes'`. Optional.
- `pr-delete-branch` (`string`): Delete the local and remote branch after merge.
Options: `'yes'`, `'no'`. Defaults to `'yes'`. Optional.
- `sign-commits` (`string`): Whether to sign Git commits. Options: `'yes'`,
`'no'`. Defaults to `'yes'`. Optional.

Expand All @@ -114,7 +116,7 @@ on:
jobs:
pip-compile-upgrade:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
with:
path: requirements.txt
secrets:
Expand All @@ -137,6 +139,8 @@ to install Python and invoke [`pre-commit autoupdate`].
`'no'`. Defaults to `'yes'`. Optional.
- `pr-auto-merge` (`string`): Automatically merge only after necessary
requirements are met. Options: `'yes'`, `'no'`. Defaults to `'yes'`. Optional.
- `pr-delete-branch` (`string`): Delete the local and remote branch after merge.
Options: `'yes'`, `'no'`. Defaults to `'yes'`. Optional.
- `sign-commits` (`string`): Whether to sign Git commits. Options: `'yes'`,
`'no'`. Defaults to `'yes'`. Optional.
- `skip-repos` (`string`): A list of repos to exclude from autoupdate. The repos
Expand All @@ -163,7 +167,7 @@ on:
jobs:
pre-commit-autoupdate:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
with:
skip-repos: 'flake8'
secrets:
Expand All @@ -188,7 +192,7 @@ to install Python and invoke [`pre-commit`].
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
with:
skip-hooks: 'pylint'
```
Expand All @@ -202,7 +206,7 @@ This workflow will install Python and invoke `pylint` to analyze your code.
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
```

### .github/workflows/pypi-upload.yml
Expand Down Expand Up @@ -232,7 +236,7 @@ Secrets:
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
with:
python-version: '3.11'
secrets:
Expand Down Expand Up @@ -260,7 +264,7 @@ requires =
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
```

### .github/workflows/tox-envs.yml
Expand Down Expand Up @@ -292,7 +296,7 @@ requires =
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]'
```
Expand Down Expand Up @@ -330,7 +334,7 @@ and on your workflow:
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]'
```
Expand All @@ -345,7 +349,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].0
uses: coatl-dev/workflows/.github/workflows/[email protected].1
```

[`actions/setup-python`]: https://github.com/actions/setup-python
Expand Down

0 comments on commit 9acf617

Please sign in to comment.