python-semantic-release 10.0.1__tar.gz → 10.0.2__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-10.0.1 → python_semantic_release-10.0.2}/PKG-INFO +1 -1
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/configuration/automatic-releases/github-actions.rst +9 -9
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/pyproject.toml +1 -1
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/LICENSE +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/MANIFEST.in +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/README.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/Makefile +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/api/commands.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/changelog_templates.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/commit_parsing.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/getting_started.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/index.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/installation.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/multibranch_releases.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/strict_mode.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/conf.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/configuration/automatic-releases/cronjobs.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/configuration/automatic-releases/index.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/configuration/automatic-releases/travis.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/configuration/configuration.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/configuration/index.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/contributing/contributing_guide.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/contributing/index.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/index.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/make.bat +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/misc/psr_changelog.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/misc/troubleshooting.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/upgrading/08-upgrade.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/upgrading/09-upgrade.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/upgrading/10-upgrade.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/upgrading/index.rst +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/setup.cfg +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/python_semantic_release.egg-info/SOURCES.txt +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/__main__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/changelog/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/changelog/context.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/changelog/release_history.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/changelog/template.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/changelog_writer.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/cli_context.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/commands/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/commands/changelog.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/commands/generate_config.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/commands/main.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/commands/publish.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/commands/version.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/config.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/const.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/github_actions_output.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/masking_filter.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/util.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/_base.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/angular.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/conventional.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/emoji.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/scipy.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/tag.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/token.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/commit_parser/util.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/const.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.components/changelog_header.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.components/changelog_init.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.components/changelog_update.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.components/changes.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.components/first_release.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.components/macros.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.components/unreleased_changes.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.components/versioned_changes.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/.release_notes.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/md/CHANGELOG.md.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/.components/changelog_header.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/.components/changelog_init.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/.components/changelog_update.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/.components/changes.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/.components/first_release.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/.components/macros.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/.components/unreleased_changes.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/.components/versioned_changes.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/data/templates/conventional/rst/CHANGELOG.rst.j2 +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/enums.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/errors.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/gitproject.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/globals.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/helpers.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/_base.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/bitbucket.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/gitea.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/github.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/gitlab.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/remote_hvcs_base.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/token_auth.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/util.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/py.typed +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/algorithm.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/declaration.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/declarations/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/declarations/enum.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/declarations/i_version_replacer.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/declarations/pattern.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/declarations/toml.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/translator.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/version/version.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/conftest.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/const.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_changelog/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_changelog/test_changelog.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_changelog/test_changelog_custom_parser.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_changelog/test_changelog_parsing.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_changelog/test_changelog_release_notes.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_config/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_config/test_generate_config.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_publish/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_publish/test_publish.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/conftest.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/git_flow/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/git_flow/test_repo_1_channel.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/git_flow/test_repo_2_channels.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/git_flow/test_repo_3_channels.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/git_flow/test_repo_4_channels.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/github_flow/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/github_flow/test_repo_1_channel.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/github_flow/test_repo_2_channels.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/trunk_based_dev/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/trunk_based_dev/test_repo_trunk.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/trunk_based_dev/test_repo_trunk_dual_version_support.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/trunk_based_dev/test_repo_trunk_dual_version_support_w_prereleases.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/bump_version/trunk_based_dev/test_repo_trunk_w_prereleases.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_build.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_bump.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_changelog.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_changelog_custom_commit_msg.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_github_actions.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_print.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_release_notes.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_stamp.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/test_version_strict.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/conftest.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/test_help.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/test_main.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/commit_parsers.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/example_project.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/git_repo.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/git_flow/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/git_flow/repo_w_1_release_channel.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/git_flow/repo_w_2_release_channels.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/git_flow/repo_w_3_release_channels.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/git_flow/repo_w_4_release_channels.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/github_flow/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/github_flow/repo_w_default_release.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/github_flow/repo_w_release_channels.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/repo_initial_commit.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/trunk_based_dev/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/trunk_based_dev/repo_w_dual_version_support.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/trunk_based_dev/repo_w_dual_version_support_w_prereleases.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/trunk_based_dev/repo_w_no_tags.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/trunk_based_dev/repo_w_prereleases.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/trunk_based_dev/repo_w_tags.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/scipy.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/conftest.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/changelog/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/changelog/conftest.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/changelog/test_changelog_context.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/changelog/test_default_changelog.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/changelog/test_release_history.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/changelog/test_release_notes.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/changelog/test_template.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/changelog/test_template_render.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/cli/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/cli/test_config.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/cli/test_github_actions_output.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/cli/test_masking_filter.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/cli/test_util.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/cli/test_version.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/commit_parser/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/commit_parser/test_conventional.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/commit_parser/test_emoji.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/commit_parser/test_parsed_commit.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/commit_parser/test_scipy.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/commit_parser/test_util.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/hvcs/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/hvcs/test__base.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/hvcs/test_bitbucket.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/hvcs/test_gitea.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/hvcs/test_github.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/hvcs/test_gitlab.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/hvcs/test_token_auth.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/hvcs/test_util.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/test_helpers.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/version/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/version/declarations/__init__.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/version/declarations/test_pattern_declaration.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/version/declarations/test_toml_declaration.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/version/test_algorithm.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/version/test_translator.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/unit/semantic_release/version/test_version.py +0 -0
- {python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/util.py +0 -0
|
@@ -382,7 +382,7 @@ before the :ref:`version <cmd-version>` subcommand.
|
|
|
382
382
|
|
|
383
383
|
.. code:: yaml
|
|
384
384
|
|
|
385
|
-
- uses: python-semantic-release/python-semantic-release@v10.0.
|
|
385
|
+
- uses: python-semantic-release/python-semantic-release@v10.0.1
|
|
386
386
|
with:
|
|
387
387
|
root_options: "-vv --noop"
|
|
388
388
|
|
|
@@ -699,7 +699,7 @@ before the :ref:`publish <cmd-publish>` subcommand.
|
|
|
699
699
|
|
|
700
700
|
.. code:: yaml
|
|
701
701
|
|
|
702
|
-
- uses: python-semantic-release/publish-action@v10.0.
|
|
702
|
+
- uses: python-semantic-release/publish-action@v10.0.1
|
|
703
703
|
with:
|
|
704
704
|
root_options: "-vv --noop"
|
|
705
705
|
|
|
@@ -873,14 +873,14 @@ to the GitHub Release Assets as well.
|
|
|
873
873
|
- name: Action | Semantic Version Release
|
|
874
874
|
id: release
|
|
875
875
|
# Adjust tag with desired version if applicable.
|
|
876
|
-
uses: python-semantic-release/python-semantic-release@v10.0.
|
|
876
|
+
uses: python-semantic-release/python-semantic-release@v10.0.1
|
|
877
877
|
with:
|
|
878
878
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
879
879
|
git_committer_name: "github-actions"
|
|
880
880
|
git_committer_email: "actions@users.noreply.github.com"
|
|
881
881
|
|
|
882
882
|
- name: Publish | Upload to GitHub Release Assets
|
|
883
|
-
uses: python-semantic-release/publish-action@v10.0.
|
|
883
|
+
uses: python-semantic-release/publish-action@v10.0.1
|
|
884
884
|
if: steps.release.outputs.released == 'true'
|
|
885
885
|
with:
|
|
886
886
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -979,7 +979,7 @@ The equivalent GitHub Action configuration would be:
|
|
|
979
979
|
|
|
980
980
|
- name: Action | Semantic Version Release
|
|
981
981
|
# Adjust tag with desired version if applicable.
|
|
982
|
-
uses: python-semantic-release/python-semantic-release@v10.0.
|
|
982
|
+
uses: python-semantic-release/python-semantic-release@v10.0.1
|
|
983
983
|
with:
|
|
984
984
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
985
985
|
force: patch
|
|
@@ -1038,14 +1038,14 @@ Publish Action.
|
|
|
1038
1038
|
|
|
1039
1039
|
- name: Release submodule 1
|
|
1040
1040
|
id: release-submod-1
|
|
1041
|
-
uses: python-semantic-release/python-semantic-release@v10.0.
|
|
1041
|
+
uses: python-semantic-release/python-semantic-release@v10.0.1
|
|
1042
1042
|
with:
|
|
1043
1043
|
directory: ${{ env.SUBMODULE_1_DIR }}
|
|
1044
1044
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
1045
1045
|
|
|
1046
1046
|
- name: Release submodule 2
|
|
1047
1047
|
id: release-submod-2
|
|
1048
|
-
uses: python-semantic-release/python-semantic-release@v10.0.
|
|
1048
|
+
uses: python-semantic-release/python-semantic-release@v10.0.1
|
|
1049
1049
|
with:
|
|
1050
1050
|
directory: ${{ env.SUBMODULE_2_DIR }}
|
|
1051
1051
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1057,7 +1057,7 @@ Publish Action.
|
|
|
1057
1057
|
# ------------------------------------------------------------------- #
|
|
1058
1058
|
|
|
1059
1059
|
- name: Publish | Upload package 1 to GitHub Release Assets
|
|
1060
|
-
uses: python-semantic-release/publish-action@v10.0.
|
|
1060
|
+
uses: python-semantic-release/publish-action@v10.0.1
|
|
1061
1061
|
if: steps.release-submod-1.outputs.released == 'true'
|
|
1062
1062
|
with:
|
|
1063
1063
|
directory: ${{ env.SUBMODULE_1_DIR }}
|
|
@@ -1065,7 +1065,7 @@ Publish Action.
|
|
|
1065
1065
|
tag: ${{ steps.release-submod-1.outputs.tag }}
|
|
1066
1066
|
|
|
1067
1067
|
- name: Publish | Upload package 2 to GitHub Release Assets
|
|
1068
|
-
uses: python-semantic-release/publish-action@v10.0.
|
|
1068
|
+
uses: python-semantic-release/publish-action@v10.0.1
|
|
1069
1069
|
if: steps.release-submod-2.outputs.released == 'true'
|
|
1070
1070
|
with:
|
|
1071
1071
|
directory: ${{ env.SUBMODULE_2_DIR }}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/commit_parsing.rst
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/getting_started.rst
RENAMED
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/installation.rst
RENAMED
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/concepts/strict_mode.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/configuration/index.rst
RENAMED
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/contributing/index.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/misc/psr_changelog.rst
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/misc/troubleshooting.rst
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/upgrading/08-upgrade.rst
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/upgrading/09-upgrade.rst
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/docs/upgrading/10-upgrade.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/__init__.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/__main__.py
RENAMED
|
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
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/config.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/const.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/cli/util.py
RENAMED
|
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
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/const.py
RENAMED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/enums.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/errors.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/gitproject.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/globals.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/helpers.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/_base.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/gitea.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/hvcs/util.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/src/semantic_release/py.typed
RENAMED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_config/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_publish/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/e2e/cmd_version/__init__.py
RENAMED
|
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
|
|
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
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/__init__.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/commit_parsers.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/example_project.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/git_repo.py
RENAMED
|
File without changes
|
{python_semantic_release-10.0.1 → python_semantic_release-10.0.2}/tests/fixtures/repos/__init__.py
RENAMED
|
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
|
|
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
|
|
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
|
|
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
|