Skip to content

Commit 26931fa

Browse files
committed
bump: version 4.3.0 → 4.3.1
1 parent f33b6d3 commit 26931fa

File tree

3 files changed

+23
-13
lines changed

3 files changed

+23
-13
lines changed

.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ commitizen:
66
name: cz_conventional_commits
77
tag_format: v$version
88
update_changelog_on_bump: true
9-
version: 4.3.0
9+
version: 4.3.1
1010
version_files:
1111
- README.md
1212
version_scheme: semver

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v4.3.1 (2025-05-05)
2+
3+
### Refactor
4+
5+
- use coatl-dev/actions@v4 (#69)
6+
17
## v4.3.0 (2025-05-02)
28

39
### Feat

README.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ GitHub action for using a matrix strategy to distribute the build for
6060
```yml
6161
jobs:
6262
main:
63-
uses: coatl-dev/workflows/.github/workflows/docker-build-push-multi-platform.yml@v4.3.0
63+
uses: coatl-dev/workflows/.github/workflows/docker-build-push-multi-platform.yml@v4.3.1
6464
with:
6565
registry-image: user/app
6666
metadata-tags: |
@@ -111,7 +111,7 @@ GitHub action for using a matrix strategy to distribute the build for
111111
```yml
112112
jobs:
113113
main:
114-
uses: coatl-dev/workflows/.github/workflows/docker-build-push-multi-registry.yml@v4.3.0
114+
uses: coatl-dev/workflows/.github/workflows/docker-build-push-multi-registry.yml@v4.3.1
115115
with:
116116
dockerhub-repo: user/app
117117
dockerhub-username: ${{ vars.DOCKERHUB_USERNAME }}
@@ -139,6 +139,10 @@ requirements.
139139
- `path` (`string`): The location of the requirement file(s).
140140
- `python-version` (`string`): Python version to use for installing `pip-tools`.
141141
You may use MAJOR.MINOR or exact version. Defaults to `'3.13'`. Optional.
142+
- `use-config` (`string`): Whether to read configuration from TOML file.
143+
Options: `'yes'`, `'no'`. Defaults to `'no'`. Optional.
144+
- `config-file` (`string`): The location of the configuration file. Optional.
145+
Defaults to `'.pip-tools.toml`.
142146
- `pr-create` (`string`): Whether to create a Pull Request. Options: `'yes'`,
143147
`'no'`. Defaults to `'yes'`. Optional.
144148
- `pr-commit-message` (`string`): Use the given message as the commit message.
@@ -171,7 +175,7 @@ on:
171175
172176
jobs:
173177
pip-compile-upgrade:
174-
uses: coatl-dev/workflows/.github/workflows/pip-compile-upgrade.yml@v4.3.0
178+
uses: coatl-dev/workflows/.github/workflows/pip-compile-upgrade.yml@v4.3.1
175179
with:
176180
path: requirements.txt
177181
secrets:
@@ -222,7 +226,7 @@ on:
222226
223227
jobs:
224228
pre-commit-autoupdate:
225-
uses: coatl-dev/workflows/.github/workflows/pre-commit-autoupdate.yml@v4.3.0
229+
uses: coatl-dev/workflows/.github/workflows/pre-commit-autoupdate.yml@v4.3.1
226230
with:
227231
skip-repos: 'flake8'
228232
secrets:
@@ -247,7 +251,7 @@ to install Python and invoke [`pre-commit`].
247251
```yaml
248252
jobs:
249253
main:
250-
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v4.3.0
254+
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v4.3.1
251255
with:
252256
skip-hooks: 'pylint'
253257
```
@@ -266,7 +270,7 @@ This workflow will install Python and invoke `pylint` to analyze your code.
266270
```yaml
267271
jobs:
268272
main:
269-
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v4.3.0
273+
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v4.3.1
270274
with:
271275
path: src
272276
```
@@ -302,7 +306,7 @@ Secrets:
302306
```yaml
303307
jobs:
304308
main:
305-
uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v4.3.0
309+
uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v4.3.1
306310
with:
307311
python-version: '2.7'
308312
secrets:
@@ -330,7 +334,7 @@ requires =
330334
```yaml
331335
jobs:
332336
main:
333-
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v4.3.0
337+
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v4.3.1
334338
```
335339

336340
### .github/workflows/tox-envs.yml
@@ -362,7 +366,7 @@ requires =
362366
```yaml
363367
jobs:
364368
main:
365-
uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v4.3.0
369+
uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v4.3.1
366370
with:
367371
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
368372
```
@@ -399,7 +403,7 @@ and on your workflow:
399403
```yaml
400404
jobs:
401405
main:
402-
uses: coatl-dev/workflows/.github/workflows/tox-gh.yml@v4.3.0
406+
uses: coatl-dev/workflows/.github/workflows/tox-gh.yml@v4.3.1
403407
with:
404408
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
405409
```
@@ -414,7 +418,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
414418
```yaml
415419
jobs:
416420
main:
417-
uses: coatl-dev/workflows/.github/workflows/tox.yml@v4.3.0
421+
uses: coatl-dev/workflows/.github/workflows/tox.yml@v4.3.1
418422
```
419423

420424
### .github/workflows/uv-pip-compile-upgrade
@@ -460,7 +464,7 @@ on:
460464
461465
jobs:
462466
pip-compile-upgrade:
463-
uses: coatl-dev/workflows/.github/workflows/uv-pip-compile-upgrade.yml@v4.3.0
467+
uses: coatl-dev/workflows/.github/workflows/uv-pip-compile-upgrade.yml@v4.3.1
464468
with:
465469
path: requirements.txt
466470
secrets:

0 commit comments

Comments
 (0)