Skip to content

Commit

Permalink
9.8.7
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
semantic-release committed Aug 20, 2024
1 parent 5bd91b4 commit 708671d
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 2 deletions.
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,57 @@
# CHANGELOG

## v9.8.7 (2024-08-20)

### Documentation

* docs: use pinned version for GHA examples (#1004)

* docs(github-actions): use pinned version for GHA examples

Fixes #1003

* chore(scripts): add auto version bump to non dynamic docs text (i.e. code snippets)

* docs(github-actions): adjust formatting & version warning in code snippets

* style(docs-github-actions): adjust formatting for readability

---------

Co-authored-by: codejedi365 <codejedi365@gmail.com> ([`5fdf761`](https://github.com/python-semantic-release/python-semantic-release/commit/5fdf7614c036a77ffb051cd30f57d0a63c062c0d))

* docs(configuration): fix build_command_env table rendering (#996) ([`a5eff0b`](https://github.com/python-semantic-release/python-semantic-release/commit/a5eff0bfe41d2fd5d9ead152a132010b718b7772))

* docs(changelog): clarify description of the default changelog generation process ([`399fa65`](https://github.com/python-semantic-release/python-semantic-release/commit/399fa6521d5c6c4397b1d6e9b13ea7945ae92543))

* docs(configuration): clarify `changelog_file` vs `template_dir` option usage

Provided additional description that warns about the mutually-exclusive nature of
the `changelog_file` option and the `template_dir` option.

Resolves: #983 ([`a7199c8`](https://github.com/python-semantic-release/python-semantic-release/commit/a7199c8cd6041a9de017694302e49b139bbcb034))

### Fix

* fix: provide `context.history` global in release notes templates (#1005)

* fix(release-notes): provide `context.history` global in release note templates

Temporarily return the `context.history` variable to release notes generation
as many users are using it in their release documentation. It was never intended
to be provided and will be removed in the future.

context was removed in `v9.8.3` during a refactor and condensing of changelog
and release notes functionality.

Resolves: #984

* fix(release-notes): fix noop-changelog to print raw release notes

Some markdown sequences can be interpreted as ansi escape sequences which dilute
debugging of release note templates by the user. This change ensures the raw
content is displayed to the console as expected. ([`5bd91b4`](https://github.com/python-semantic-release/python-semantic-release/commit/5bd91b4d7ac33ddf10446f3e66d7d11e0724aeb2))

## v9.8.6 (2024-07-20)

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "python-semantic-release"
version = "9.8.6"
version = "9.8.7"
description = "Automatic Semantic Versioning for Python projects"
requires-python = ">=3.8"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion semantic_release/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
tags_and_versions,
)

__version__ = "9.8.6"
__version__ = "9.8.7"

__all__ = [
"CommitParser",
Expand Down

0 comments on commit 708671d

Please sign in to comment.