Skip to content

Commit f91245e

Browse files
author
semantic-release
committed
chore(release): 6.2.0
Automatically generated by python-semantic-release Signed-off-by: semantic-release <semantic-release>
1 parent 7d12b9a commit f91245e

File tree

4 files changed

+83
-3
lines changed

4 files changed

+83
-3
lines changed

CHANGELOG.md

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

33

44

5+
## v6.2.0 (2023-12-31)
6+
7+
### Build
8+
9+
* build: allow additional major-version RC branch patterns
10+
11+
Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`f8af156`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/f8af156c9c38f737b7067722d2a96f8a2a4fcb48))
12+
13+
### Chore
14+
15+
* chore(deps-dev): update coverage requirement from 7.3.3 to 7.4.0 (#524)
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.3.3...7.4.0)
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; ([`9bcc223`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/9bcc223b783306cf2255b3910acf5518d7ea223c))
30+
31+
* chore(deps-dev): update mypy requirement from 1.7.1 to 1.8.0 (#521)
32+
33+
Updates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version.
34+
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
35+
- [Commits](https://github.com/python/mypy/compare/v1.7.1...v1.8.0)
36+
37+
---
38+
updated-dependencies:
39+
- dependency-name: mypy
40+
dependency-type: direct:development
41+
...
42+
43+
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;
44+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`720046e`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/720046e2f69c64216b5ef847ad5f76a95f450a8f))
45+
46+
### Documentation
47+
48+
* docs: fix typo
49+
50+
Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`2563996`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/25639967c93ad464e486f2fe6a148b3be439f43d))
51+
52+
* docs: update intro and description
53+
54+
Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`f0bd05d`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/f0bd05dc854b5b71421b82cfb527fcb8f41a7c4a))
55+
56+
* docs: buld docs on ubuntu22.04 python311
57+
58+
Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`b3e9ab7`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/b3e9ab77696f2ee763f1746f8142bdf471477c39))
59+
60+
### Feature
61+
62+
* feat: allow `lxml` requirement in range of `&gt;=4,&lt;6` (#523)
63+
64+
Updates the requirements on [lxml](https://github.com/lxml/lxml) to permit the latest version.
65+
- [Release notes](https://github.com/lxml/lxml/releases)
66+
- [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt)
67+
- [Commits](https://github.com/lxml/lxml/compare/lxml-4.0.0...lxml-5.0.0)
68+
69+
---
70+
updated-dependencies:
71+
- dependency-name: lxml
72+
dependency-type: direct:production
73+
...
74+
75+
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;
76+
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`7d12b9a`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/7d12b9a9f7a2fdc5e6bb12f891c6f4291e20e65e))
77+
78+
### Unknown
79+
80+
* docs
81+
82+
Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`7dcd166`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/7dcd16621002713dcf1ce8e17bc5762320fae4fa))
83+
84+
585
## v6.1.0 (2023-12-22)
686

787
### Chore

cyclonedx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
# !! version is managed by semantic_release
2222
# do not use typing here, or else `semantic_release` might have issues finding the variable
2323
# flake8: noqa
24-
__version__ = "6.1.0"
24+
__version__ = "6.2.0"

docs/conf.py

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

2121
# The full version, including alpha/beta/rc tags
2222
# !! version is managed by semantic_release
23-
release = '6.1.0'
23+
release = '6.2.0'
2424

2525
# -- General configuration ---------------------------------------------------
2626

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55
[tool.poetry]
66
name = "cyclonedx-python-lib"
77
# !! version is managed by semantic_release
8-
version = "6.1.0"
8+
version = "6.2.0"
99
description = "Python library for CycloneDX"
1010
authors = [
1111
"Paul Horton <phorton@sonatype.com>",

0 commit comments

Comments
 (0)