gha-utils 4.15.3__tar.gz → 4.15.5__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.

Files changed (23) hide show
  1. {gha_utils-4.15.3 → gha_utils-4.15.5}/PKG-INFO +1 -1
  2. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/__init__.py +1 -1
  3. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/metadata.py +2 -2
  4. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils.egg-info/PKG-INFO +1 -1
  5. {gha_utils-4.15.3 → gha_utils-4.15.5}/pyproject.toml +2 -2
  6. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/__main__.py +0 -0
  7. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/changelog.py +0 -0
  8. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/cli.py +0 -0
  9. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/mailmap.py +0 -0
  10. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/matrix.py +0 -0
  11. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/py.typed +0 -0
  12. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils/test_plan.py +0 -0
  13. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils.egg-info/SOURCES.txt +0 -0
  14. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils.egg-info/dependency_links.txt +0 -0
  15. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils.egg-info/entry_points.txt +0 -0
  16. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils.egg-info/requires.txt +0 -0
  17. {gha_utils-4.15.3 → gha_utils-4.15.5}/gha_utils.egg-info/top_level.txt +0 -0
  18. {gha_utils-4.15.3 → gha_utils-4.15.5}/readme.md +0 -0
  19. {gha_utils-4.15.3 → gha_utils-4.15.5}/setup.cfg +0 -0
  20. {gha_utils-4.15.3 → gha_utils-4.15.5}/tests/test_changelog.py +0 -0
  21. {gha_utils-4.15.3 → gha_utils-4.15.5}/tests/test_mailmap.py +0 -0
  22. {gha_utils-4.15.3 → gha_utils-4.15.5}/tests/test_matrix.py +0 -0
  23. {gha_utils-4.15.3 → gha_utils-4.15.5}/tests/test_metadata.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gha-utils
3
- Version: 4.15.3
3
+ Version: 4.15.5
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
@@ -17,4 +17,4 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = "4.15.3"
20
+ __version__ = "4.15.5"
@@ -805,7 +805,7 @@ class Metadata:
805
805
  """
806
806
  version = None
807
807
  if self.new_commits_matrix:
808
- details = self.new_commits_matrix.get("include")
808
+ details = self.new_commits_matrix.include
809
809
  if details:
810
810
  version = details[0].get("current_version")
811
811
  else:
@@ -817,7 +817,7 @@ class Metadata:
817
817
  """Returns the version of the release commit."""
818
818
  version = None
819
819
  if self.release_commits_matrix:
820
- details = self.release_commits_matrix.get("include")
820
+ details = self.release_commits_matrix.include
821
821
  if details:
822
822
  # This script is only designed for at most 1 release in the list of new
823
823
  # commits.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gha-utils
3
- Version: 4.15.3
3
+ Version: 4.15.5
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
@@ -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.15.3"
4
+ version = "4.15.5"
5
5
  # Python versions and their status: https://devguide.python.org/versions/
6
6
  requires-python = ">= 3.11"
7
7
  description = "⚙️ CLI helpers for GitHub Actions + reuseable workflows"
@@ -136,7 +136,7 @@ addopts = [
136
136
  xfail_strict = true
137
137
 
138
138
  [tool.bumpversion]
139
- current_version = "4.15.3"
139
+ current_version = "4.15.5"
140
140
  allow_dirty = true
141
141
  ignore_missing_files = true
142
142
 
File without changes
File without changes
File without changes