releez 0.2.2__tar.gz → 0.2.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.
- releez-0.2.2/README.md → releez-0.2.5/PKG-INFO +36 -1
- releez-0.2.2/PKG-INFO → releez-0.2.5/README.md +7 -15
- {releez-0.2.2 → releez-0.2.5}/pyproject.toml +29 -1
- releez-0.2.5/src/releez/py.typed +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/__init__.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/artifact_version.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/cli.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/cliff.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/errors.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/git_repo.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/github.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/process.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/release.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/settings.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/subapps/__init__.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/subapps/changelog.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/utils.py +0 -0
- {releez-0.2.2 → releez-0.2.5}/src/releez/version_tags.py +0 -0
|
@@ -1,11 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: releez
|
|
3
|
+
Version: 0.2.5
|
|
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
|
|
16
|
+
Requires-Dist: typer==0.20.0
|
|
17
|
+
Requires-Dist: gitpython>=3.1.45,<4
|
|
18
|
+
Requires-Dist: pygithub>=2.8.1,<3
|
|
19
|
+
Requires-Dist: git-cliff>=2.11.0,<3
|
|
20
|
+
Requires-Dist: semver>=3.0.1,<4
|
|
21
|
+
Requires-Dist: pydantic>=2.7.0,<3
|
|
22
|
+
Requires-Dist: pydantic-settings>=2.7.0,<3
|
|
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
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
|
|
1
30
|
# `releez`
|
|
2
31
|
|
|
32
|
+
[](https://github.com/hotdog-werx/releez/actions/workflows/ci-checks.yaml)
|
|
33
|
+
[](https://pypi.org/project/releez/)
|
|
34
|
+
[](https://www.python.org/downloads/)
|
|
35
|
+
[](https://opensource.org/licenses/MIT)
|
|
36
|
+
[](https://codecov.io/gh/hotdog-werx/releez)
|
|
37
|
+
|
|
3
38
|
`releez` is a CLI tool for managing semantic versioned releases.
|
|
4
39
|
|
|
5
40
|
`releez` uses [`git-cliff`](https://git-cliff.org/) for versioning logic and
|
|
6
41
|
changelog generation under the hood. You should host a `cliff.toml` or other
|
|
7
42
|
compatible `git-cliff` configuration in your repo. Review the `git-cliff`
|
|
8
|
-
documentation for
|
|
43
|
+
documentation for details.
|
|
9
44
|
|
|
10
45
|
## Usage
|
|
11
46
|
|
|
@@ -1,25 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.3
|
|
2
|
-
Name: releez
|
|
3
|
-
Version: 0.2.2
|
|
4
|
-
Summary: CLI tool for helping to manage release processes.
|
|
5
|
-
Requires-Dist: typer==0.20.0
|
|
6
|
-
Requires-Dist: gitpython>=3.1.45,<4
|
|
7
|
-
Requires-Dist: pygithub>=2.8.1,<3
|
|
8
|
-
Requires-Dist: git-cliff>=2.11.0,<3
|
|
9
|
-
Requires-Dist: semver>=3.0.1,<4
|
|
10
|
-
Requires-Dist: pydantic>=2.7.0,<3
|
|
11
|
-
Requires-Dist: pydantic-settings>=2.7.0,<3
|
|
12
|
-
Requires-Python: >=3.11
|
|
13
|
-
Description-Content-Type: text/markdown
|
|
14
|
-
|
|
15
1
|
# `releez`
|
|
16
2
|
|
|
3
|
+
[](https://github.com/hotdog-werx/releez/actions/workflows/ci-checks.yaml)
|
|
4
|
+
[](https://pypi.org/project/releez/)
|
|
5
|
+
[](https://www.python.org/downloads/)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
[](https://codecov.io/gh/hotdog-werx/releez)
|
|
8
|
+
|
|
17
9
|
`releez` is a CLI tool for managing semantic versioned releases.
|
|
18
10
|
|
|
19
11
|
`releez` uses [`git-cliff`](https://git-cliff.org/) for versioning logic and
|
|
20
12
|
changelog generation under the hood. You should host a `cliff.toml` or other
|
|
21
13
|
compatible `git-cliff` configuration in your repo. Review the `git-cliff`
|
|
22
|
-
documentation for
|
|
14
|
+
documentation for details.
|
|
23
15
|
|
|
24
16
|
## Usage
|
|
25
17
|
|
|
@@ -3,7 +3,29 @@ name = "releez"
|
|
|
3
3
|
description = "CLI tool for helping to manage release processes."
|
|
4
4
|
readme = "README.md"
|
|
5
5
|
requires-python = ">=3.11"
|
|
6
|
-
version = "0.2.
|
|
6
|
+
version = "0.2.5"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
authors = [{ name = "James Trousdale" }]
|
|
9
|
+
keywords = [
|
|
10
|
+
"release",
|
|
11
|
+
"versioning",
|
|
12
|
+
"changelog",
|
|
13
|
+
"git",
|
|
14
|
+
"cli",
|
|
15
|
+
"semver",
|
|
16
|
+
"ci",
|
|
17
|
+
"cd",
|
|
18
|
+
]
|
|
19
|
+
classifiers = [
|
|
20
|
+
"Development Status :: 4 - Beta",
|
|
21
|
+
"Environment :: Console",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Topic :: Software Development :: Version Control",
|
|
28
|
+
]
|
|
7
29
|
|
|
8
30
|
dependencies = [
|
|
9
31
|
"typer ==0.20.0",
|
|
@@ -22,6 +44,12 @@ dev = [
|
|
|
22
44
|
"pytest-mock >=3.15.1, <4",
|
|
23
45
|
]
|
|
24
46
|
|
|
47
|
+
[project.urls]
|
|
48
|
+
Homepage = "https://github.com/hotdog-werx/releez"
|
|
49
|
+
Repository = "https://github.com/hotdog-werx/releez"
|
|
50
|
+
"Bug Tracker" = "https://github.com/hotdog-werx/releez/issues"
|
|
51
|
+
Changelog = "https://github.com/hotdog-werx/releez/blob/master/CHANGELOG.md"
|
|
52
|
+
|
|
25
53
|
[project.scripts]
|
|
26
54
|
releez = "releez.cli:main"
|
|
27
55
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|