Skip to content

Commit 708671d

Browse files
author
semantic-release
committed
9.8.7
Automatically generated by python-semantic-release
1 parent 5bd91b4 commit 708671d

File tree

3 files changed

+54
-2
lines changed

3 files changed

+54
-2
lines changed

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
11
# CHANGELOG
22

3+
## v9.8.7 (2024-08-20)
4+
5+
### Documentation
6+
7+
* docs: use pinned version for GHA examples (#1004)
8+
9+
* docs(github-actions): use pinned version for GHA examples
10+
11+
Fixes #1003
12+
13+
* chore(scripts): add auto version bump to non dynamic docs text (i.e. code snippets)
14+
15+
* docs(github-actions): adjust formatting & version warning in code snippets
16+
17+
* style(docs-github-actions): adjust formatting for readability
18+
19+
---------
20+
21+
Co-authored-by: codejedi365 <[email protected]> ([`5fdf761`](https://github.com/python-semantic-release/python-semantic-release/commit/5fdf7614c036a77ffb051cd30f57d0a63c062c0d))
22+
23+
* docs(configuration): fix build_command_env table rendering (#996) ([`a5eff0b`](https://github.com/python-semantic-release/python-semantic-release/commit/a5eff0bfe41d2fd5d9ead152a132010b718b7772))
24+
25+
* docs(changelog): clarify description of the default changelog generation process ([`399fa65`](https://github.com/python-semantic-release/python-semantic-release/commit/399fa6521d5c6c4397b1d6e9b13ea7945ae92543))
26+
27+
* docs(configuration): clarify `changelog_file` vs `template_dir` option usage
28+
29+
Provided additional description that warns about the mutually-exclusive nature of
30+
the `changelog_file` option and the `template_dir` option.
31+
32+
Resolves: #983 ([`a7199c8`](https://github.com/python-semantic-release/python-semantic-release/commit/a7199c8cd6041a9de017694302e49b139bbcb034))
33+
34+
### Fix
35+
36+
* fix: provide `context.history` global in release notes templates (#1005)
37+
38+
* fix(release-notes): provide `context.history` global in release note templates
39+
40+
Temporarily return the `context.history` variable to release notes generation
41+
as many users are using it in their release documentation. It was never intended
42+
to be provided and will be removed in the future.
43+
44+
context was removed in `v9.8.3` during a refactor and condensing of changelog
45+
and release notes functionality.
46+
47+
Resolves: #984
48+
49+
* fix(release-notes): fix noop-changelog to print raw release notes
50+
51+
Some markdown sequences can be interpreted as ansi escape sequences which dilute
52+
debugging of release note templates by the user. This change ensures the raw
53+
content is displayed to the console as expected. ([`5bd91b4`](https://github.com/python-semantic-release/python-semantic-release/commit/5bd91b4d7ac33ddf10446f3e66d7d11e0724aeb2))
54+
355
## v9.8.6 (2024-07-20)
456

557
### Documentation

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.8.6"
9+
version = "9.8.7"
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.8.6"
27+
__version__ = "9.8.7"
2828

2929
__all__ = [
3030
"CommitParser",

0 commit comments

Comments
 (0)