Skip to content

Commit 31a691e

Browse files
author
semantic-release
committed
9.8.0
Automatically generated by python-semantic-release
1 parent 1e15270 commit 31a691e

File tree

3 files changed

+52
-2
lines changed

3 files changed

+52
-2
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,56 @@
22

33

44

5+
## v9.8.0 (2024-05-27)
6+
7+
### Documentation
8+
9+
* docs(migration-v8): update version references in migration instructions (#938) ([`d6ba16a`](https://github.com/python-semantic-release/python-semantic-release/commit/d6ba16aa8e01bae1a022a9b06cd0b9162c51c345))
10+
11+
### Feature
12+
13+
* feat: extend gitlab to edit a previous release if exists (#934)
14+
15+
* style(hvcs-github): update function docstrings for params
16+
17+
* feat(hvcs-gitlab): enable gitlab to edit a previous release if found
18+
19+
* fix(hvcs-gitlab): add tag message to release creation
20+
21+
* fix(gitlab): adjust release name to mirror other hvcs release names
22+
23+
* refactor(gitlab): consolidate & simplify usage of gitlab client
24+
25+
* test(gitlab): neuter test cases that used the internet & add new tests
26+
27+
* refactor(gitlab): handle errors in release retrieval gracefully
28+
29+
* refactor(gitlab): update release notes editing implementation
30+
31+
---------
32+
33+
Co-authored-by: bdorsey <[email protected]> ([`23e02b9`](https://github.com/python-semantic-release/python-semantic-release/commit/23e02b96dfb2a58f6b4ecf7b7812e4c1bc50573d))
34+
35+
* feat(gha): configure ssh signed tags in GitHub Action (#937)
36+
37+
Resolves: #936 ([`dfb76b9`](https://github.com/python-semantic-release/python-semantic-release/commit/dfb76b94b859a7f3fa3ad778eec7a86de2874d68))
38+
39+
* feat(version-cmd): add toggle of `--no-verify` option to `git commit` (#927)
40+
41+
* test(version-cmd): add test w/ failing pre-commit hook--preventing version commit
42+
43+
* feat(version-cmd): add toggle of `--no-verify` option to `git commit`
44+
45+
This commit adds a configuration option that toggles the addition of `--no-verify`
46+
command line switch on git commit operations that are run with the `version` command.
47+
48+
* docs(configuration): add `no_git_verify` description to the configuration page
49+
50+
---------
51+
52+
Co-authored-by: bdorsey <[email protected]> ([`1de6f78`](https://github.com/python-semantic-release/python-semantic-release/commit/1de6f7834c6d37a74bc53f91609d40793556b52d))
53+
54+
555
## v9.7.3 (2024-05-15)
656

757
### Fix

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

semantic_release/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
tags_and_versions,
2525
)
2626

27-
__version__ = "9.7.3"
27+
__version__ = "9.8.0"
2828

2929

3030
def setup_hook(argv: list[str]) -> None:

0 commit comments

Comments
 (0)