releez 0.2.2__py3-none-any.whl → 0.2.4__py3-none-any.whl

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.
releez/py.typed ADDED
File without changes
@@ -1,7 +1,18 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: releez
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: CLI tool for helping to manage release processes.
5
+ Keywords: release,versioning,changelog,git,cli,semver,ci,cd
6
+ Author: James Trousdale
7
+ License-Expression: MIT
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Environment :: Console
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Topic :: Software Development :: Version Control
5
16
  Requires-Dist: typer==0.20.0
6
17
  Requires-Dist: gitpython>=3.1.45,<4
7
18
  Requires-Dist: pygithub>=2.8.1,<3
@@ -10,10 +21,19 @@ Requires-Dist: semver>=3.0.1,<4
10
21
  Requires-Dist: pydantic>=2.7.0,<3
11
22
  Requires-Dist: pydantic-settings>=2.7.0,<3
12
23
  Requires-Python: >=3.11
24
+ Project-URL: Homepage, https://github.com/hotdog-werx/releez
25
+ Project-URL: Repository, https://github.com/hotdog-werx/releez
26
+ Project-URL: Bug Tracker, https://github.com/hotdog-werx/releez/issues
27
+ Project-URL: Changelog, https://github.com/hotdog-werx/releez/blob/master/CHANGELOG.md
13
28
  Description-Content-Type: text/markdown
14
29
 
15
30
  # `releez`
16
31
 
32
+ [![CI](https://img.shields.io/github/actions/workflow/status/hotdog-werx/releez/ci-checks.yaml)](https://github.com/hotdog-werx/releez/actions/workflows/ci-checks.yaml)
33
+ [![PyPI version](https://badge.fury.io/py/releez.svg)](https://pypi.org/project/releez/)
34
+ [![Python 3.11+](https://img.shields.io/badge/python-3.11%2B-blue)](https://www.python.org/downloads/)
35
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
36
+
17
37
  `releez` is a CLI tool for managing semantic versioned releases.
18
38
 
19
39
  `releez` uses [`git-cliff`](https://git-cliff.org/) for versioning logic and
@@ -6,13 +6,14 @@ releez/errors.py,sha256=LVLrGtkr1gfScwwXUnlNI-kSyVBmW5nNHLXofCGFMV4,7104
6
6
  releez/git_repo.py,sha256=_Np11E0LUfWutSGapzLcCclk9NT5D30SEQCTzZXF8N8,6245
7
7
  releez/github.py,sha256=c-9soa457X8HzaeVM3JJcpdWzMjl_ZbQH7VN-3jx09w,3885
8
8
  releez/process.py,sha256=4I-sZNDCqTG167K9xglrzhd16pPihd6jI_4wyQ4UmCw,1416
9
+ releez/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
10
  releez/release.py,sha256=TKLEsVgvvgmn_js5T8aqtoc19fTjOJI9DmgXYjkO95U,6819
10
11
  releez/settings.py,sha256=eOelkqCFetZdmOPCfaNxoxHvfn3zRQtb84PUztb09Pg,2953
11
12
  releez/subapps/__init__.py,sha256=pDyHecbnvOayItqUw2FFVET4H7Lj4glgTqUgMrL-S34,116
12
13
  releez/subapps/changelog.py,sha256=rJpdzJocYNDzjL8YJFw0v6LyNYLtJvsxZUu3f3eIi_I,2594
13
14
  releez/utils.py,sha256=19PYyrUXPYLAgvD14Q7taZMlctV7YyLT0MAtVhmn18M,1356
14
15
  releez/version_tags.py,sha256=nnkdnwYADO-9tt2vYT7xAbitBFvQPUkgxvdtRVY10C0,1798
15
- releez-0.2.2.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
16
- releez-0.2.2.dist-info/entry_points.txt,sha256=dFRzNkEp1RC4HgqbeI7XAHDPbIkL9-7KWvp28dj_ctw,44
17
- releez-0.2.2.dist-info/METADATA,sha256=MzGAxuPDzdV-G7RBMj202YLELvmeQ0ewN8EpNdjOG_k,6938
18
- releez-0.2.2.dist-info/RECORD,,
16
+ releez-0.2.4.dist-info/WHEEL,sha256=5DEXXimM34_d4Gx1AuF9ysMr1_maoEtGKjaILM3s4w4,80
17
+ releez-0.2.4.dist-info/entry_points.txt,sha256=dFRzNkEp1RC4HgqbeI7XAHDPbIkL9-7KWvp28dj_ctw,44
18
+ releez-0.2.4.dist-info/METADATA,sha256=6sWWl3QY_c-WTZSOEW4VNBDRjazdEUbyCi9uuXBQSOE,8189
19
+ releez-0.2.4.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.9.28
2
+ Generator: uv 0.9.29
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any