python-semantic-release 9.8.8__tar.gz → 9.9.0__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.
- python_semantic_release-9.9.0/PKG-INFO +84 -0
- python_semantic_release-9.9.0/README.rst +22 -0
- python_semantic_release-9.9.0/docs/automatic-releases/github-actions.rst +750 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/automatic-releases/index.rst +0 -8
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/conf.py +2 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/configuration.rst +30 -1
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/index.rst +68 -10
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/pyproject.toml +6 -5
- python_semantic_release-9.9.0/python_semantic_release.egg-info/PKG-INFO +84 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/python_semantic_release.egg-info/SOURCES.txt +1 -1
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/python_semantic_release.egg-info/requires.txt +3 -2
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/__init__.py +1 -1
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/commands/version.py +5 -12
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/config.py +12 -1
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/github_actions_output.py +10 -7
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/gitea.py +6 -3
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/gitlab.py +27 -54
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/util.py +5 -3
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/command_line/conftest.py +0 -6
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/conftest.py +6 -0
- python_semantic_release-9.9.0/tests/scenario/test_version_stamp.py +219 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/cli/test_github_actions_output.py +15 -5
- python_semantic_release-9.8.8/PKG-INFO +0 -111
- python_semantic_release-9.8.8/README.rst +0 -50
- python_semantic_release-9.8.8/docs/automatic-releases/github-actions.rst +0 -106
- python_semantic_release-9.8.8/docs/github-action.rst +0 -139
- python_semantic_release-9.8.8/python_semantic_release.egg-info/PKG-INFO +0 -111
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/AUTHORS.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/LICENSE +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/MANIFEST.in +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/Makefile +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/algorithm.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/automatic-releases/cronjobs.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/automatic-releases/travis.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/changelog_templates.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/commands.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/commit-parsing.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/contributing.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/contributors.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/make.bat +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/migrating_from_v7.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/multibranch_releases.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/strict_mode.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/docs/troubleshooting.rst +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/python_semantic_release.egg-info/dependency_links.txt +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/python_semantic_release.egg-info/entry_points.txt +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/python_semantic_release.egg-info/top_level.txt +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/__main__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/changelog/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/changelog/context.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/changelog/release_history.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/changelog/template.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/changelog_writer.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/cli_context.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/commands/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/commands/changelog.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/commands/generate_config.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/commands/main.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/commands/publish.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/const.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/masking_filter.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/cli/util.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/commit_parser/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/commit_parser/_base.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/commit_parser/angular.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/commit_parser/emoji.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/commit_parser/scipy.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/commit_parser/tag.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/commit_parser/token.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/commit_parser/util.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/const.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/data/templates/CHANGELOG.md.j2 +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/data/templates/release_notes.md.j2 +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/enums.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/errors.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/gitproject.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/helpers.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/_base.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/bitbucket.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/github.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/remote_hvcs_base.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/hvcs/token_auth.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/version/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/version/algorithm.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/version/declaration.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/version/translator.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/semantic_release/version/version.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/setup.cfg +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/command_line/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/command_line/test_changelog.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/command_line/test_generate_config.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/command_line/test_help.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/command_line/test_main.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/command_line/test_publish.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/command_line/test_version.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/const.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/commit_parsers.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/example_project.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/git_repo.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/git_flow/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/git_flow/repo_w_2_release_channels.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/git_flow/repo_w_3_release_channels.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/github_flow/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/github_flow/repo_w_release_channels.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/trunk_based_dev/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/trunk_based_dev/repo_w_no_tags.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/trunk_based_dev/repo_w_prereleases.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/repos/trunk_based_dev/repo_w_tags.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/fixtures/scipy.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/scenario/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/scenario/test_next_version.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/scenario/test_release_history.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/scenario/test_template_render.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/changelog/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/changelog/test_changelog_context.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/changelog/test_default_changelog.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/changelog/test_release_notes.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/changelog/test_template.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/cli/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/cli/test_config.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/cli/test_masking_filter.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/cli/test_util.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/cli/test_version.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/commit_parser/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/commit_parser/test_angular.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/commit_parser/test_emoji.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/commit_parser/test_parsed_commit.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/commit_parser/test_scipy.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/commit_parser/test_tag.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/commit_parser/test_util.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/hvcs/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/hvcs/test__base.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/hvcs/test_bitbucket.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/hvcs/test_gitea.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/hvcs/test_github.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/hvcs/test_gitlab.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/hvcs/test_token_auth.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/hvcs/test_util.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/test_helpers.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/version/__init__.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/version/test_algorithm.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/version/test_declaration.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/version/test_translator.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/unit/semantic_release/version/test_version.py +0 -0
- {python_semantic_release-9.8.8 → python_semantic_release-9.9.0}/tests/util.py +0 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: python-semantic-release
|
|
3
|
+
Version: 9.9.0
|
|
4
|
+
Summary: Automatic Semantic Versioning for Python projects
|
|
5
|
+
Author-email: Rolf Erik Lekang <me@rolflekang.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: changelog, https://github.com/python-semantic-release/python-semantic-release/blob/master/CHANGELOG.md
|
|
8
|
+
Project-URL: documentation, https://python-semantic-release.readthedocs.io
|
|
9
|
+
Project-URL: homepage, https://python-semantic-release.readthedocs.io
|
|
10
|
+
Project-URL: issues, https://github.com/python-semantic-release/python-semantic-release/issues
|
|
11
|
+
Project-URL: repository, http://github.com/python-semantic-release/python-semantic-release.git
|
|
12
|
+
Classifier: Programming Language :: Python
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Description-Content-Type: text/x-rst
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
License-File: AUTHORS.rst
|
|
23
|
+
Requires-Dist: click~=8.0
|
|
24
|
+
Requires-Dist: click-option-group~=0.5
|
|
25
|
+
Requires-Dist: gitpython~=3.0
|
|
26
|
+
Requires-Dist: requests~=2.25
|
|
27
|
+
Requires-Dist: jinja2~=3.1
|
|
28
|
+
Requires-Dist: python-gitlab~=4.0
|
|
29
|
+
Requires-Dist: tomlkit~=0.11
|
|
30
|
+
Requires-Dist: dotty-dict~=1.3
|
|
31
|
+
Requires-Dist: importlib-resources~=6.0
|
|
32
|
+
Requires-Dist: pydantic~=2.0
|
|
33
|
+
Requires-Dist: rich~=13.0
|
|
34
|
+
Requires-Dist: shellingham~=1.5
|
|
35
|
+
Provides-Extra: build
|
|
36
|
+
Requires-Dist: build~=1.2; extra == "build"
|
|
37
|
+
Provides-Extra: docs
|
|
38
|
+
Requires-Dist: Sphinx~=6.0; extra == "docs"
|
|
39
|
+
Requires-Dist: sphinxcontrib-apidoc==0.5.0; extra == "docs"
|
|
40
|
+
Requires-Dist: sphinx-autobuild==2024.2.4; extra == "docs"
|
|
41
|
+
Requires-Dist: furo~=2024.1; extra == "docs"
|
|
42
|
+
Provides-Extra: test
|
|
43
|
+
Requires-Dist: coverage[toml]~=7.0; extra == "test"
|
|
44
|
+
Requires-Dist: pyyaml~=6.0; extra == "test"
|
|
45
|
+
Requires-Dist: pytest~=8.3; extra == "test"
|
|
46
|
+
Requires-Dist: pytest-env~=1.0; extra == "test"
|
|
47
|
+
Requires-Dist: pytest-xdist~=3.0; extra == "test"
|
|
48
|
+
Requires-Dist: pytest-mock~=3.0; extra == "test"
|
|
49
|
+
Requires-Dist: pytest-lazy-fixtures~=1.1.1; extra == "test"
|
|
50
|
+
Requires-Dist: pytest-cov~=5.0; extra == "test"
|
|
51
|
+
Requires-Dist: pytest-pretty~=1.2; extra == "test"
|
|
52
|
+
Requires-Dist: pytest-clarity~=1.0; extra == "test"
|
|
53
|
+
Requires-Dist: responses~=0.25.0; extra == "test"
|
|
54
|
+
Requires-Dist: requests-mock~=1.10; extra == "test"
|
|
55
|
+
Provides-Extra: dev
|
|
56
|
+
Requires-Dist: pre-commit~=3.5; extra == "dev"
|
|
57
|
+
Requires-Dist: tox~=4.11; extra == "dev"
|
|
58
|
+
Requires-Dist: ruff==0.6.1; extra == "dev"
|
|
59
|
+
Provides-Extra: mypy
|
|
60
|
+
Requires-Dist: mypy==1.11.2; extra == "mypy"
|
|
61
|
+
Requires-Dist: types-requests~=2.32.0; extra == "mypy"
|
|
62
|
+
|
|
63
|
+
Python Semantic Release
|
|
64
|
+
***********************
|
|
65
|
+
|
|
66
|
+
*Automating Releases via SemVer and Commit Message Conventions*
|
|
67
|
+
|
|
68
|
+
----
|
|
69
|
+
|
|
70
|
+
The official documentation for Python Semantic Release can be found at
|
|
71
|
+
`python-semantic-release.readthedocs.io`_.
|
|
72
|
+
|
|
73
|
+
GitHub Action
|
|
74
|
+
=============
|
|
75
|
+
|
|
76
|
+
When using the Python Semantic Release GitHub Action, it executes the command
|
|
77
|
+
``semantic-release version`` using `python-semantic-release`_.
|
|
78
|
+
|
|
79
|
+
The usage information and examples for this GitHub Action is available under
|
|
80
|
+
the `GitHub Actions section`_ of `python-semantic-release.readthedocs.io`_.
|
|
81
|
+
|
|
82
|
+
.. _python-semantic-release: https://pypi.org/project/python-semantic-release/
|
|
83
|
+
.. _python-semantic-release.readthedocs.io: https://python-semantic-release.readthedocs.io/en/latest/
|
|
84
|
+
.. _GitHub Actions section: https://python-semantic-release.readthedocs.io/en/latest/automatic-releases/github-actions.html
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Python Semantic Release
|
|
2
|
+
***********************
|
|
3
|
+
|
|
4
|
+
*Automating Releases via SemVer and Commit Message Conventions*
|
|
5
|
+
|
|
6
|
+
----
|
|
7
|
+
|
|
8
|
+
The official documentation for Python Semantic Release can be found at
|
|
9
|
+
`python-semantic-release.readthedocs.io`_.
|
|
10
|
+
|
|
11
|
+
GitHub Action
|
|
12
|
+
=============
|
|
13
|
+
|
|
14
|
+
When using the Python Semantic Release GitHub Action, it executes the command
|
|
15
|
+
``semantic-release version`` using `python-semantic-release`_.
|
|
16
|
+
|
|
17
|
+
The usage information and examples for this GitHub Action is available under
|
|
18
|
+
the `GitHub Actions section`_ of `python-semantic-release.readthedocs.io`_.
|
|
19
|
+
|
|
20
|
+
.. _python-semantic-release: https://pypi.org/project/python-semantic-release/
|
|
21
|
+
.. _python-semantic-release.readthedocs.io: https://python-semantic-release.readthedocs.io/en/latest/
|
|
22
|
+
.. _GitHub Actions section: https://python-semantic-release.readthedocs.io/en/latest/automatic-releases/github-actions.html
|