gha-utils 4.12.0__tar.gz → 4.13.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of gha-utils might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gha-utils
3
- Version: 4.12.0
3
+ Version: 4.13.1
4
4
  Summary: ⚙️ CLI helpers for GitHub Actions + reuseable workflows
5
5
  Author-email: Kevin Deldycke <kevin@deldycke.com>
6
6
  Project-URL: Homepage, https://github.com/kdeldycke/workflows
@@ -48,7 +48,7 @@ Description-Content-Type: text/markdown
48
48
  Requires-Dist: backports.strenum~=1.3.1; python_version < "3.11"
49
49
  Requires-Dist: boltons>=24.0.0
50
50
  Requires-Dist: bump-my-version>=0.21.0
51
- Requires-Dist: click-extra~=4.11.0
51
+ Requires-Dist: click-extra~=4.12.0
52
52
  Requires-Dist: packaging~=24.1
53
53
  Requires-Dist: PyDriller~=2.6
54
54
  Requires-Dist: pyproject-metadata~=0.9.0
@@ -59,7 +59,7 @@ Requires-Dist: coverage[toml]~=7.6.0; extra == "test"
59
59
  Requires-Dist: pytest~=8.3.1; extra == "test"
60
60
  Requires-Dist: pytest-cases~=3.8.3; extra == "test"
61
61
  Requires-Dist: pytest-cov~=6.0.0; extra == "test"
62
- Requires-Dist: pytest-github-actions-annotate-failures~=0.2.0; extra == "test"
62
+ Requires-Dist: pytest-github-actions-annotate-failures~=0.3.0; extra == "test"
63
63
  Requires-Dist: pytest-randomly~=3.16.0; extra == "test"
64
64
 
65
65
  # `gha-utils` CLI + reusable workflows
@@ -139,7 +139,7 @@ To ease deployment, standalone executables of `gha-utils`'s latest version are a
139
139
 
140
140
  | Platform | `x86_64` | `arm64` |
141
141
  | ----------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
142
- | **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) | |
142
+ | **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) | [Download `gha-utils-linux-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-arm64.bin) |
143
143
  | **macOS** | [Download `gha-utils-macos-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-x64.bin) | [Download `gha-utils-macos-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-arm64.bin) |
144
144
  | **Windows** | [Download `gha-utils-windows-x64.exe`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-windows-x64.exe) | |
145
145
 
@@ -294,18 +294,19 @@ Now re-run your actions and they should be able to update the workflow files in
294
294
 
295
295
  It turns out [Release Engineering is a full-time job, and full of edge-cases](https://blog.axo.dev/2023/02/cargo-dist).
296
296
 
297
- Rust has [`cargo-dist`](https://github.com/axodotdev/cargo-dist). Go has... ? But there is no equivalent for Python.
297
+ Things have improved a lot in the Python ecosystem with `uv`. But there are still a lot of manual steps to do to release.
298
298
 
299
- So I made up a [`release.yaml` workflow](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml), which:
299
+ So I made up this [`release.yaml` workflow](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml), which:
300
300
 
301
301
  1. Extracts project metadata from `pyproject.toml`
302
302
  1. Generates a build matrix of all commits / os / arch / CLI entry points
303
- 1. Build Python wheels with `uv`
304
- 1. Compile binaries of all CLI with Nuitka
303
+ 1. Builds Python wheels with `uv`
304
+ 1. Compiles binaries of all CLI with Nuitka
305
305
  1. Tag the release commit in Git
306
+ 1. Produces attestations of released artefacts
306
307
  1. Publish new version to PyPi
307
308
  1. Publish a GitHub release
308
- 1. Attach and rename build artifacts to it
309
+ 1. Attach and rename build artifacts to the GitHub release
309
310
 
310
311
  ## Changelog
311
312
 
@@ -17,4 +17,4 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = "4.12.0"
20
+ __version__ = "4.13.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gha-utils
3
- Version: 4.12.0
3
+ Version: 4.13.1
4
4
  Summary: ⚙️ CLI helpers for GitHub Actions + reuseable workflows
5
5
  Author-email: Kevin Deldycke <kevin@deldycke.com>
6
6
  Project-URL: Homepage, https://github.com/kdeldycke/workflows
@@ -48,7 +48,7 @@ Description-Content-Type: text/markdown
48
48
  Requires-Dist: backports.strenum~=1.3.1; python_version < "3.11"
49
49
  Requires-Dist: boltons>=24.0.0
50
50
  Requires-Dist: bump-my-version>=0.21.0
51
- Requires-Dist: click-extra~=4.11.0
51
+ Requires-Dist: click-extra~=4.12.0
52
52
  Requires-Dist: packaging~=24.1
53
53
  Requires-Dist: PyDriller~=2.6
54
54
  Requires-Dist: pyproject-metadata~=0.9.0
@@ -59,7 +59,7 @@ Requires-Dist: coverage[toml]~=7.6.0; extra == "test"
59
59
  Requires-Dist: pytest~=8.3.1; extra == "test"
60
60
  Requires-Dist: pytest-cases~=3.8.3; extra == "test"
61
61
  Requires-Dist: pytest-cov~=6.0.0; extra == "test"
62
- Requires-Dist: pytest-github-actions-annotate-failures~=0.2.0; extra == "test"
62
+ Requires-Dist: pytest-github-actions-annotate-failures~=0.3.0; extra == "test"
63
63
  Requires-Dist: pytest-randomly~=3.16.0; extra == "test"
64
64
 
65
65
  # `gha-utils` CLI + reusable workflows
@@ -139,7 +139,7 @@ To ease deployment, standalone executables of `gha-utils`'s latest version are a
139
139
 
140
140
  | Platform | `x86_64` | `arm64` |
141
141
  | ----------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
142
- | **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) | |
142
+ | **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) | [Download `gha-utils-linux-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-arm64.bin) |
143
143
  | **macOS** | [Download `gha-utils-macos-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-x64.bin) | [Download `gha-utils-macos-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-arm64.bin) |
144
144
  | **Windows** | [Download `gha-utils-windows-x64.exe`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-windows-x64.exe) | |
145
145
 
@@ -294,18 +294,19 @@ Now re-run your actions and they should be able to update the workflow files in
294
294
 
295
295
  It turns out [Release Engineering is a full-time job, and full of edge-cases](https://blog.axo.dev/2023/02/cargo-dist).
296
296
 
297
- Rust has [`cargo-dist`](https://github.com/axodotdev/cargo-dist). Go has... ? But there is no equivalent for Python.
297
+ Things have improved a lot in the Python ecosystem with `uv`. But there are still a lot of manual steps to do to release.
298
298
 
299
- So I made up a [`release.yaml` workflow](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml), which:
299
+ So I made up this [`release.yaml` workflow](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml), which:
300
300
 
301
301
  1. Extracts project metadata from `pyproject.toml`
302
302
  1. Generates a build matrix of all commits / os / arch / CLI entry points
303
- 1. Build Python wheels with `uv`
304
- 1. Compile binaries of all CLI with Nuitka
303
+ 1. Builds Python wheels with `uv`
304
+ 1. Compiles binaries of all CLI with Nuitka
305
305
  1. Tag the release commit in Git
306
+ 1. Produces attestations of released artefacts
306
307
  1. Publish new version to PyPi
307
308
  1. Publish a GitHub release
308
- 1. Attach and rename build artifacts to it
309
+ 1. Attach and rename build artifacts to the GitHub release
309
310
 
310
311
  ## Changelog
311
312
 
@@ -1,6 +1,6 @@
1
1
  boltons>=24.0.0
2
2
  bump-my-version>=0.21.0
3
- click-extra~=4.11.0
3
+ click-extra~=4.12.0
4
4
  packaging~=24.1
5
5
  PyDriller~=2.6
6
6
  pyproject-metadata~=0.9.0
@@ -15,5 +15,5 @@ coverage[toml]~=7.6.0
15
15
  pytest~=8.3.1
16
16
  pytest-cases~=3.8.3
17
17
  pytest-cov~=6.0.0
18
- pytest-github-actions-annotate-failures~=0.2.0
18
+ pytest-github-actions-annotate-failures~=0.3.0
19
19
  pytest-randomly~=3.16.0
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  # Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
3
3
  name = "gha-utils"
4
- version = "4.12.0"
4
+ version = "4.13.1"
5
5
  # Python versions and their status: https://devguide.python.org/versions/
6
6
  requires-python = ">= 3.10"
7
7
  description = "⚙️ CLI helpers for GitHub Actions + reuseable workflows"
@@ -75,7 +75,7 @@ dependencies = [
75
75
  # while releasing gha-utils itself.
76
76
  # v0.21.0 is the first to rely on wcmatch library.
77
77
  "bump-my-version >= 0.21.0",
78
- "click-extra ~= 4.11.0",
78
+ "click-extra ~= 4.12.0",
79
79
  "packaging ~= 24.1",
80
80
  "PyDriller ~= 2.6",
81
81
  "pyproject-metadata ~= 0.9.0",
@@ -91,7 +91,7 @@ test = [
91
91
  # More pytest plugins at: https://docs.pytest.org/en/latest/reference/plugin_list.html
92
92
  "pytest-cases ~= 3.8.3",
93
93
  "pytest-cov ~= 6.0.0",
94
- "pytest-github-actions-annotate-failures ~= 0.2.0",
94
+ "pytest-github-actions-annotate-failures ~= 0.3.0",
95
95
  "pytest-randomly ~= 3.16.0",
96
96
  ]
97
97
 
@@ -132,7 +132,7 @@ addopts = [
132
132
  xfail_strict = true
133
133
 
134
134
  [tool.bumpversion]
135
- current_version = "4.12.0"
135
+ current_version = "4.13.1"
136
136
  allow_dirty = true
137
137
  ignore_missing_files = true
138
138
 
@@ -75,7 +75,7 @@ To ease deployment, standalone executables of `gha-utils`'s latest version are a
75
75
 
76
76
  | Platform | `x86_64` | `arm64` |
77
77
  | ----------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
78
- | **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) | |
78
+ | **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) | [Download `gha-utils-linux-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-arm64.bin) |
79
79
  | **macOS** | [Download `gha-utils-macos-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-x64.bin) | [Download `gha-utils-macos-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-arm64.bin) |
80
80
  | **Windows** | [Download `gha-utils-windows-x64.exe`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-windows-x64.exe) | |
81
81
 
@@ -230,18 +230,19 @@ Now re-run your actions and they should be able to update the workflow files in
230
230
 
231
231
  It turns out [Release Engineering is a full-time job, and full of edge-cases](https://blog.axo.dev/2023/02/cargo-dist).
232
232
 
233
- Rust has [`cargo-dist`](https://github.com/axodotdev/cargo-dist). Go has... ? But there is no equivalent for Python.
233
+ Things have improved a lot in the Python ecosystem with `uv`. But there are still a lot of manual steps to do to release.
234
234
 
235
- So I made up a [`release.yaml` workflow](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml), which:
235
+ So I made up this [`release.yaml` workflow](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml), which:
236
236
 
237
237
  1. Extracts project metadata from `pyproject.toml`
238
238
  1. Generates a build matrix of all commits / os / arch / CLI entry points
239
- 1. Build Python wheels with `uv`
240
- 1. Compile binaries of all CLI with Nuitka
239
+ 1. Builds Python wheels with `uv`
240
+ 1. Compiles binaries of all CLI with Nuitka
241
241
  1. Tag the release commit in Git
242
+ 1. Produces attestations of released artefacts
242
243
  1. Publish new version to PyPi
243
244
  1. Publish a GitHub release
244
- 1. Attach and rename build artifacts to it
245
+ 1. Attach and rename build artifacts to the GitHub release
245
246
 
246
247
  ## Changelog
247
248
 
File without changes
File without changes