@@ -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.4.1
896+ uses : python-semantic-release/python-semantic-release@v10.5.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.4.1
903+ uses : python-semantic-release/publish-action@v10.5.0
904904 if : steps.release.outputs.released == 'true'
905905 with :
906906 github_token : ${{ secrets.GITHUB_TOKEN }}
@@ -969,15 +969,15 @@ to the GitHub Release Assets as well.
969969 the ``token `` input) in order to gain push access.
970970
971971.. note ::
972- As of $NEW_RELEASE_TAG , Python Semantic Release automatically detects and converts
972+ As of v10.5.0 , Python Semantic Release automatically detects and converts
973973 shallow clones to full clones when needed. While you can still use ``fetch-depth: 0 ``
974974 with ``actions/checkout@v4 `` to fetch the full history upfront, it is no longer
975975 required. If you use the default shallow clone, Python Semantic Release will
976976 automatically fetch the full history before evaluating commits. If you are using
977977 an older version of PSR, you will need to unshallow the repository prior to use.
978978
979979.. note ::
980- As of $NEW_RELEASE_TAG , the verify upstream step is no longer required as it has been
980+ As of v10.5.0 , the verify upstream step is no longer required as it has been
981981 integrated into PSR directly. If you are using an older version of PSR, you will need
982982 to review the older documentation for that step. See Issue `#1201 `_ for more details.
983983
@@ -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.4.1
1008+ uses : python-semantic-release/python-semantic-release@v10.5.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.4.1
1067+ uses : python-semantic-release/python-semantic-release@v10.5.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.4.1
1074+ uses : python-semantic-release/python-semantic-release@v10.5.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.4.1
1086+ uses : python-semantic-release/publish-action@v10.5.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.4.1
1094+ uses : python-semantic-release/publish-action@v10.5.0
10951095 if : steps.release-submod-2.outputs.released == 'true'
10961096 with :
10971097 directory : ${{ env.SUBMODULE_2_DIR }}
0 commit comments