Skip to content

Commit 26bb37c

Browse files
author
semantic-release
committed
9.21.0
Automatically generated by python-semantic-release
1 parent 1a4116a commit 26bb37c

File tree

4 files changed

+32
-9
lines changed

4 files changed

+32
-9
lines changed

CHANGELOG.rst

+23
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@
44
CHANGELOG
55
=========
66

7+
.. _changelog-v9.21.0:
8+
9+
v9.21.0 (2025-02-23)
10+
====================
11+
12+
✨ Features
13+
-----------
14+
15+
* Add package name variant, ``python-semantic-release``, project script, closes `#1195`_
16+
(`PR#1199`_, `1ac97bc`_)
17+
18+
📖 Documentation
19+
----------------
20+
21+
* **github-actions**: Update example workflow to handle rapid merges (`PR#1200`_, `1a4116a`_)
22+
23+
.. _#1195: https://github.com/python-semantic-release/python-semantic-release/issues/1195
24+
.. _1a4116a: https://github.com/python-semantic-release/python-semantic-release/commit/1a4116af4b999144998cf94cf84c9c23ff2e352f
25+
.. _1ac97bc: https://github.com/python-semantic-release/python-semantic-release/commit/1ac97bc74c69ce61cec98242c19bf8adc1d37fb9
26+
.. _PR#1199: https://github.com/python-semantic-release/python-semantic-release/pull/1199
27+
.. _PR#1200: https://github.com/python-semantic-release/python-semantic-release/pull/1200
28+
29+
730
.. _changelog-v9.20.0:
831

932
v9.20.0 (2025-02-17)

docs/automatic-releases/github-actions.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ before the :ref:`version <cmd-version>` subcommand.
337337

338338
.. code:: yaml
339339
340-
- uses: python-semantic-release/python-semantic-release@v9.20.0
340+
- uses: python-semantic-release/python-semantic-release@v9.21.0
341341
with:
342342
root_options: "-vv --noop"
343343
@@ -576,7 +576,7 @@ before the :ref:`publish <cmd-publish>` subcommand.
576576

577577
.. code:: yaml
578578
579-
- uses: python-semantic-release/publish-action@v9.20.0
579+
- uses: python-semantic-release/publish-action@v9.21.0
580580
with:
581581
root_options: "-vv --noop"
582582
@@ -728,7 +728,7 @@ to the GitHub Release Assets as well.
728728
- name: Action | Semantic Version Release
729729
id: release
730730
# Adjust tag with desired version if applicable.
731-
uses: python-semantic-release/python-semantic-release@v9.20.0
731+
uses: python-semantic-release/python-semantic-release@v9.21.0
732732
with:
733733
github_token: ${{ secrets.GITHUB_TOKEN }}
734734
git_committer_name: "github-actions"
@@ -739,7 +739,7 @@ to the GitHub Release Assets as well.
739739
if: steps.release.outputs.released == 'true'
740740
741741
- name: Publish | Upload to GitHub Release Assets
742-
uses: python-semantic-release/publish-action@v9.20.0
742+
uses: python-semantic-release/publish-action@v9.21.0
743743
if: steps.release.outputs.released == 'true'
744744
with:
745745
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -794,7 +794,7 @@ The equivalent GitHub Action configuration would be:
794794
795795
- name: Action | Semantic Version Release
796796
# Adjust tag with desired version if applicable.
797-
uses: python-semantic-release/python-semantic-release@v9.20.0
797+
uses: python-semantic-release/python-semantic-release@v9.21.0
798798
with:
799799
github_token: ${{ secrets.GITHUB_TOKEN }}
800800
force: patch
@@ -822,13 +822,13 @@ Publish Action.
822822
.. code:: yaml
823823
824824
- name: Release Project 1
825-
uses: python-semantic-release/python-semantic-release@v9.20.0
825+
uses: python-semantic-release/python-semantic-release@v9.21.0
826826
with:
827827
directory: ./project1
828828
github_token: ${{ secrets.GITHUB_TOKEN }}
829829
830830
- name: Release Project 2
831-
uses: python-semantic-release/python-semantic-release@v9.20.0
831+
uses: python-semantic-release/python-semantic-release@v9.21.0
832832
with:
833833
directory: ./project2
834834
github_token: ${{ secrets.GITHUB_TOKEN }}

pyproject.toml

+1-1
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 = "9.20.0"
9+
version = "9.21.0"
1010
description = "Automatic Semantic Versioning for Python projects"
1111
requires-python = ">=3.8"
1212
license = { text = "MIT" }

src/semantic_release/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
tags_and_versions,
2525
)
2626

27-
__version__ = "9.20.0"
27+
__version__ = "9.21.0"
2828

2929
__all__ = [
3030
"CommitParser",

0 commit comments

Comments
 (0)