Skip to content

Commit 5f975f9

Browse files
author
semantic-release
committed
chore(release): 4.1.2
Automatically generated by python-semantic-release Signed-off-by: semantic-release <semantic-release>
1 parent dba63b8 commit 5f975f9

File tree

4 files changed

+75
-3
lines changed

4 files changed

+75
-3
lines changed

CHANGELOG.md

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

33

44

5+
## v4.1.2 (2024-03-01)
6+
7+
### Build
8+
9+
* build: use poetry v1.8.1 (#682)
10+
11+
Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`dba63b8`](https://github.com/CycloneDX/cyclonedx-python/commit/dba63b8509336757d17d1cd21cdbe72517ecfd67))
12+
13+
### Chore
14+
15+
* chore(deps-dev): Update coverage requirement from 7.4.1 to 7.4.3 (#680)
16+
17+
Updates the requirements on [coverage](https://github.com/nedbat/coveragepy) to permit the latest version.
18+
- [Release notes](https://github.com/nedbat/coveragepy/releases)
19+
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
20+
- [Commits](https://github.com/nedbat/coveragepy/compare/7.4.1...7.4.3)
21+
22+
---
23+
updated-dependencies:
24+
- dependency-name: coverage
25+
dependency-type: direct:development
26+
...
27+
28+
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;
29+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`dadc9b5`](https://github.com/CycloneDX/cyclonedx-python/commit/dadc9b50fb2738f76cc5a5a32ace57491789a52c))
30+
31+
* chore(deps): Bump Gr1N/setup-poetry from 8 to 9 (#681)
32+
33+
Bumps [Gr1N/setup-poetry](https://github.com/gr1n/setup-poetry) from 8 to 9.
34+
- [Release notes](https://github.com/gr1n/setup-poetry/releases)
35+
- [Commits](https://github.com/gr1n/setup-poetry/compare/v8...v9)
36+
37+
---
38+
updated-dependencies:
39+
- dependency-name: Gr1N/setup-poetry
40+
dependency-type: direct:production
41+
update-type: version-update:semver-major
42+
...
43+
44+
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;
45+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`5ee8bb2`](https://github.com/CycloneDX/cyclonedx-python/commit/5ee8bb2e32ed0d6410b456ed3660690077142e2e))
46+
47+
* chore(deps-dev): Update flake8-quotes requirement from 3.3.2 to 3.4.0 (#679)
48+
49+
Updates the requirements on [flake8-quotes](https://github.com/zheller/flake8-quotes) to permit the latest version.
50+
- [Commits](https://github.com/zheller/flake8-quotes/compare/3.3.2...3.4.0)
51+
52+
---
53+
updated-dependencies:
54+
- dependency-name: flake8-quotes
55+
dependency-type: direct:development
56+
...
57+
58+
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;
59+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`4da9c9e`](https://github.com/CycloneDX/cyclonedx-python/commit/4da9c9edb604cad57757c50f277f07289fef3880))
60+
61+
* chore(deps-dev): Update flake8-bugbear requirement (#677)
62+
63+
Updates the requirements on [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) to permit the latest version.
64+
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases)
65+
- [Commits](https://github.com/PyCQA/flake8-bugbear/compare/24.1.17...24.2.6)
66+
67+
---
68+
updated-dependencies:
69+
- dependency-name: flake8-bugbear
70+
dependency-type: direct:development
71+
...
72+
73+
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;
74+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`14a8ec0`](https://github.com/CycloneDX/cyclonedx-python/commit/14a8ec025e6aca0c2d8b6c0875a23f708b152923))
75+
76+
577
## v4.1.1 (2024-02-03)
678

779
### Documentation

cyclonedx_py/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# !! version is managed by `semantic_release`
1717
# do not use typing here, or else `semantic_release` might have issues finding the variable
18-
__version__ = "4.1.1" # noqa:Q000
18+
__version__ = "4.1.2" # noqa:Q000
1919

2020
# There is no stable/public API.
2121
# However, you might call the stable CLI instead, like so:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# The full version, including alpha/beta/rc tags
2424
# !! version is managed by semantic_release
25-
release = "4.1.1"
25+
release = "4.1.2"
2626

2727
# -- General configuration ---------------------------------------------------
2828

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api"
77
[tool.poetry]
88
# keep in sync with `cyclonedx_py/_internal/utils/cdx.py`
99
name = "cyclonedx-bom"
10-
version = "4.1.1"
10+
version = "4.1.2"
1111
description = "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments"
1212
authors = [
1313
"Jan Kowalleck <jan.kowalleck@gmail.com>",

0 commit comments

Comments
 (0)