Skip to content

Commit 39f8881

Browse files
committed
bump: version 4.2.0 → 4.2.1
1 parent 3e09413 commit 39f8881

File tree

3 files changed

+25
-12
lines changed

3 files changed

+25
-12
lines changed

Diff for: .cz.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ commitizen:
44
name: cz_conventional_commits
55
tag_format: v$version
66
update_changelog_on_bump: true
7-
version: 4.2.0
7+
version: 4.2.1
88
version_files:
99
- README.md
1010
version_scheme: semver

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v4.2.1 (2025-01-28)
2+
3+
### Refactor
4+
5+
- **pylint**: add path input (#58)
6+
17
## v4.2.0 (2025-01-27)
28

39
### Feat

Diff for: README.md

+18-11
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ GitHub action for using a matrix strategy to distribute the build for
5959
```yml
6060
jobs:
6161
main:
62-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
62+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
6363
with:
6464
registry-image: user/app
6565
metadata-tags: |
@@ -110,7 +110,7 @@ GitHub action for using a matrix strategy to distribute the build for
110110
```yml
111111
jobs:
112112
main:
113-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
113+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
114114
with:
115115
dockerhub-repo: user/app
116116
dockerhub-username: ${{ vars.DOCKERHUB_USERNAME }}
@@ -170,7 +170,7 @@ on:
170170
171171
jobs:
172172
pip-compile-upgrade:
173-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
173+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
174174
with:
175175
path: requirements.txt
176176
secrets:
@@ -221,7 +221,7 @@ on:
221221
222222
jobs:
223223
pre-commit-autoupdate:
224-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
224+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
225225
with:
226226
skip-repos: 'flake8'
227227
secrets:
@@ -246,7 +246,7 @@ to install Python and invoke [`pre-commit`].
246246
```yaml
247247
jobs:
248248
main:
249-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
249+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
250250
with:
251251
skip-hooks: 'pylint'
252252
```
@@ -255,12 +255,19 @@ jobs:
255255

256256
This workflow will install Python and invoke `pylint` to analyze your code.
257257

258+
**Inputs**:
259+
260+
- `path` (`string`): This can be a module, package, directory or a file.
261+
Optional.
262+
258263
**Example**:
259264

260265
```yaml
261266
jobs:
262267
main:
263-
uses: coatl-dev/workflows/.github/workflows/[email protected]
268+
uses: coatl-dev/workflows/.github/workflows/[email protected]
269+
with:
270+
path: src
264271
```
265272

266273
### .github/workflows/pypi-upload.yml
@@ -294,7 +301,7 @@ Secrets:
294301
```yaml
295302
jobs:
296303
main:
297-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
304+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
298305
with:
299306
python-version: '3.13'
300307
secrets:
@@ -322,7 +329,7 @@ requires =
322329
```yaml
323330
jobs:
324331
main:
325-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
332+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
326333
```
327334

328335
### .github/workflows/tox-envs.yml
@@ -354,7 +361,7 @@ requires =
354361
```yaml
355362
jobs:
356363
main:
357-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
364+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
358365
with:
359366
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
360367
```
@@ -391,7 +398,7 @@ and on your workflow:
391398
```yaml
392399
jobs:
393400
main:
394-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
401+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
395402
with:
396403
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
397404
```
@@ -406,7 +413,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
406413
```yaml
407414
jobs:
408415
main:
409-
uses: coatl-dev/workflows/.github/workflows/[email protected].0
416+
uses: coatl-dev/workflows/.github/workflows/[email protected].1
410417
```
411418

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

0 commit comments

Comments
 (0)