Skip to content

Commit 6b1655a

Browse files
author
semantic-release
committed
chore: release v8.0.0
Automatically generated by python-semantic-release
1 parent 95ce7ec commit 6b1655a

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/configuration/automatic-releases/github-actions.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -893,14 +893,14 @@ to the GitHub Release Assets as well.
893893
- name: Action | Semantic Version Release
894894
id: release
895895
# Adjust tag with desired version if applicable.
896-
uses: python-semantic-release/python-semantic-release@v10.5.3
896+
uses: python-semantic-release/python-semantic-release@v8.0.0
897897
with:
898898
github_token: ${{ secrets.GITHUB_TOKEN }}
899899
git_committer_name: "github-actions"
900900
git_committer_email: "actions@users.noreply.github.com"
901901
902902
- name: Publish | Upload to GitHub Release Assets
903-
uses: python-semantic-release/publish-action@v10.5.3
903+
uses: python-semantic-release/publish-action@v8.0.0
904904
if: steps.release.outputs.released == 'true'
905905
with:
906906
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -1005,7 +1005,7 @@ The equivalent GitHub Action configuration would be:
10051005
10061006
- name: Action | Semantic Version Release
10071007
# Adjust tag with desired version if applicable.
1008-
uses: python-semantic-release/python-semantic-release@v10.5.3
1008+
uses: python-semantic-release/python-semantic-release@v8.0.0
10091009
with:
10101010
github_token: ${{ secrets.GITHUB_TOKEN }}
10111011
force: patch
@@ -1064,14 +1064,14 @@ Publish Action.
10641064
10651065
- name: Release submodule 1
10661066
id: release-submod-1
1067-
uses: python-semantic-release/python-semantic-release@v10.5.3
1067+
uses: python-semantic-release/python-semantic-release@v8.0.0
10681068
with:
10691069
directory: ${{ env.SUBMODULE_1_DIR }}
10701070
github_token: ${{ secrets.GITHUB_TOKEN }}
10711071
10721072
- name: Release submodule 2
10731073
id: release-submod-2
1074-
uses: python-semantic-release/python-semantic-release@v10.5.3
1074+
uses: python-semantic-release/python-semantic-release@v8.0.0
10751075
with:
10761076
directory: ${{ env.SUBMODULE_2_DIR }}
10771077
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -1083,15 +1083,15 @@ Publish Action.
10831083
# ------------------------------------------------------------------- #
10841084
10851085
- name: Publish | Upload package 1 to GitHub Release Assets
1086-
uses: python-semantic-release/publish-action@v10.5.3
1086+
uses: python-semantic-release/publish-action@v8.0.0
10871087
if: steps.release-submod-1.outputs.released == 'true'
10881088
with:
10891089
directory: ${{ env.SUBMODULE_1_DIR }}
10901090
github_token: ${{ secrets.GITHUB_TOKEN }}
10911091
tag: ${{ steps.release-submod-1.outputs.tag }}
10921092
10931093
- name: Publish | Upload package 2 to GitHub Release Assets
1094-
uses: python-semantic-release/publish-action@v10.5.3
1094+
uses: python-semantic-release/publish-action@v8.0.0
10951095
if: steps.release-submod-2.outputs.released == 'true'
10961096
with:
10971097
directory: ${{ env.SUBMODULE_2_DIR }}

docs/configuration/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,7 @@ colon-separated definition with either 2 or 3 parts. The 2-part definition inclu
13261326
the file path and the variable name. Newly with v9.20.0, it also accepts
13271327
an optional 3rd part to allow configuration of the format type.
13281328
1329-
As of ${NEW_RELEASE_TAG}, the ``version_variables`` option also supports entire file
1329+
As of v8.0.0, the ``version_variables`` option also supports entire file
13301330
replacement by using an asterisk (``*``) as the pattern/variable name. This is useful
13311331
for files that contain only a version number, such as ``VERSION`` files.
13321332

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "python-semantic-release"
9-
version = "10.5.3"
9+
version = "8.0.0"
1010
description = "Automatic Semantic Versioning for Python projects"
1111
requires-python = "~= 3.8"
1212
license = { text = "MIT" }

src/gh_action/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-semantic-release == 10.5.3
1+
python-semantic-release == 8.0.0

0 commit comments

Comments
 (0)