Skip to content

Commit c026638

Browse files
author
semantic-release
committed
9.19.0
Automatically generated by python-semantic-release
1 parent d25c19f commit c026638

File tree

6 files changed

+41
-14
lines changed

6 files changed

+41
-14
lines changed

CHANGELOG.rst

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

7+
.. _changelog-v9.19.0:
8+
9+
v9.19.0 (2025-02-10)
10+
====================
11+
12+
✨ Features
13+
-----------
14+
15+
* **parser-conventional**: Add official ``conventional-commits`` parser (`PR#1177`_, `27ddf84`_)
16+
17+
📖 Documentation
18+
----------------
19+
20+
* Update references to Angular parser to Conventional Commit Parser (`PR#1177`_, `27ddf84`_)
21+
22+
💡 ADDITIONAL RELEASE INFORMATION
23+
---------------------------------
24+
25+
* **parser-conventional**: The 'angular' commit parser has been renamed to 'conventional' to match
26+
the official conventional-commits standard for which the 'angular' parser has evolved into. Please
27+
update your configurations to specify 'conventional' as the 'commit_parser' value in place of
28+
'angular'. The 'angular' type will be removed in v11.
29+
30+
.. _27ddf84: https://github.com/python-semantic-release/python-semantic-release/commit/27ddf840f8c812361c60bac9cf0b110d401f33d6
31+
.. _PR#1177: https://github.com/python-semantic-release/python-semantic-release/pull/1177
32+
33+
734
.. _changelog-v9.18.1:
835

936
v9.18.1 (2025-02-08)

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.18.1
340+
- uses: python-semantic-release/python-semantic-release@v9.19.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.18.1
579+
- uses: python-semantic-release/publish-action@v9.19.0
580580
with:
581581
root_options: "-vv --noop"
582582
@@ -684,7 +684,7 @@ to the GitHub Release Assets as well.
684684
- name: Action | Semantic Version Release
685685
id: release
686686
# Adjust tag with desired version if applicable.
687-
uses: python-semantic-release/python-semantic-release@v9.18.1
687+
uses: python-semantic-release/python-semantic-release@v9.19.0
688688
with:
689689
github_token: ${{ secrets.GITHUB_TOKEN }}
690690
git_committer_name: "github-actions"
@@ -695,7 +695,7 @@ to the GitHub Release Assets as well.
695695
if: steps.release.outputs.released == 'true'
696696
697697
- name: Publish | Upload to GitHub Release Assets
698-
uses: python-semantic-release/publish-action@v9.18.1
698+
uses: python-semantic-release/publish-action@v9.19.0
699699
if: steps.release.outputs.released == 'true'
700700
with:
701701
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -744,7 +744,7 @@ The equivalent GitHub Action configuration would be:
744744
745745
- name: Action | Semantic Version Release
746746
# Adjust tag with desired version if applicable.
747-
uses: python-semantic-release/python-semantic-release@v9.18.1
747+
uses: python-semantic-release/python-semantic-release@v9.19.0
748748
with:
749749
github_token: ${{ secrets.GITHUB_TOKEN }}
750750
force: patch
@@ -772,13 +772,13 @@ Publish Action.
772772
.. code:: yaml
773773
774774
- name: Release Project 1
775-
uses: python-semantic-release/python-semantic-release@v9.18.1
775+
uses: python-semantic-release/python-semantic-release@v9.19.0
776776
with:
777777
directory: ./project1
778778
github_token: ${{ secrets.GITHUB_TOKEN }}
779779
780780
- name: Release Project 2
781-
uses: python-semantic-release/python-semantic-release@v9.18.1
781+
uses: python-semantic-release/python-semantic-release@v9.19.0
782782
with:
783783
directory: ./project2
784784
github_token: ${{ secrets.GITHUB_TOKEN }}

docs/commit_parsing.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Built-in Commit Parsers
4949
The following parsers are built in to Python Semantic Release:
5050

5151
- :ref:`ConventionalCommitParser <commit_parser-builtin-conventional>`
52-
- :ref:`AngularCommitParser <commit_parser-builtin-angular>` *(deprecated in ${NEW_RELEASE_TAG})*
52+
- :ref:`AngularCommitParser <commit_parser-builtin-angular>` *(deprecated in v9.19.0)*
5353
- :ref:`EmojiCommitParser <commit_parser-builtin-emoji>`
5454
- :ref:`ScipyCommitParser <commit_parser-builtin-scipy>`
5555
- :ref:`TagCommitParser <commit_parser-builtin-tag>` *(deprecated in v9.12.0)*
@@ -61,7 +61,7 @@ The following parsers are built in to Python Semantic Release:
6161
Conventional Commits Parser
6262
"""""""""""""""""""""""""""
6363

64-
*Introduced in ${NEW_RELEASE_TAG}*
64+
*Introduced in v9.19.0*
6565

6666
A parser that is designed to parse commits formatted according to the
6767
`Conventional Commits Specification`_. The parser is implemented with the following
@@ -140,7 +140,7 @@ Angular Commit Parser
140140
"""""""""""""""""""""
141141

142142
.. warning::
143-
This parser was deprecated in ``${NEW_RELEASE_TAG}``. It will be removed in a future release.
143+
This parser was deprecated in ``v9.19.0``. It will be removed in a future release.
144144
This parser is being replaced by the :ref:`commit_parser-builtin-conventional`.
145145

146146
A parser that is designed to parse commits formatted according to the

docs/configuration.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,8 @@ Specify which commit parser Python Semantic Release should use to parse the comm
790790
within the Git repository.
791791
792792
Built-in parsers:
793-
* ``angular`` - :ref:`AngularCommitParser <commit_parser-builtin-angular>` *(deprecated in ${NEW_RELEASE_TAG})*
794-
* ``conventional`` - :ref:`ConventionalCommitParser <commit_parser-builtin-conventional>` *(available in ${NEW_RELEASE_TAG}+)*
793+
* ``angular`` - :ref:`AngularCommitParser <commit_parser-builtin-angular>` *(deprecated in v9.19.0)*
794+
* ``conventional`` - :ref:`ConventionalCommitParser <commit_parser-builtin-conventional>` *(available in v9.19.0+)*
795795
* ``emoji`` - :ref:`EmojiCommitParser <commit_parser-builtin-emoji>`
796796
* ``scipy`` - :ref:`ScipyCommitParser <commit_parser-builtin-scipy>`
797797
* ``tag`` - :ref:`TagCommitParser <commit_parser-builtin-tag>` *(deprecated in v9.12.0)*

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.18.1"
9+
version = "9.19.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.18.1"
27+
__version__ = "9.19.0"
2828

2929
__all__ = [
3030
"CommitParser",

0 commit comments

Comments
 (0)