Skip to content

Commit 0400d7b

Browse files
author
semantic-release
committed
8.5.1
Automatically generated by python-semantic-release
1 parent 9bf69d7 commit 0400d7b

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

CHANGELOG.md

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

33

44

5+
## v8.5.1 (2023-12-12)
6+
7+
### Documentation
8+
9+
* docs(configuration): adjust wording and improve clarity (#766)
10+
11+
* docs(configuration): fix typo in text
12+
13+
* docs(configuration): adjust wording and improve clarity ([`6b2fc8c`](https://github.com/python-semantic-release/python-semantic-release/commit/6b2fc8c156e122ee1b43fdb513b2dc3b8fd76724))
14+
15+
### Fix
16+
17+
* fix(config): gracefully fail when repo is in a detached HEAD state (#765)
18+
19+
* fix(config): cleanly handle repository in detached HEAD state
20+
21+
* test(cli-main): add detached head cli test ([`ac4f9aa`](https://github.com/python-semantic-release/python-semantic-release/commit/ac4f9aacb72c99f2479ae33369822faad011a824))
22+
23+
* fix(cmd-version): handle committing of git-ignored file gracefully (#764)
24+
25+
* fix(version): only commit non git-ignored files during version commit
26+
27+
* test(version): set version file as ignored file
28+
29+
Tweaks tests to use one committed change file and the version file
30+
as an ignored change file. This allows us to verify that our commit
31+
mechanism does not crash if a file that is changed is ignored by user ([`ea89fa7`](https://github.com/python-semantic-release/python-semantic-release/commit/ea89fa72885e15da91687172355426a22c152513))
32+
33+
### Style
34+
35+
* style: beautify 6b2fc8c156e122ee1b43fdb513b2dc3b8fd76724 ([`9bf69d7`](https://github.com/python-semantic-release/python-semantic-release/commit/9bf69d7005eee75f20b356bda97fea2d250a91de))
36+
37+
538
## v8.5.0 (2023-12-07)
639

740
### Feature

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

semantic_release/__init__.py

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

26-
__version__ = "8.5.0"
26+
__version__ = "8.5.1"
2727

2828

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

0 commit comments

Comments
 (0)