Skip to content

Commit beb2c21

Browse files
author
semantic-release
committed
chore(release): 7.2.0
Automatically generated by python-semantic-release Signed-off-by: semantic-release <semantic-release>
1 parent 9bf1839 commit beb2c21

File tree

4 files changed

+57
-3
lines changed

4 files changed

+57
-3
lines changed

CHANGELOG.md

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

33

44

5+
## v7.2.0 (2024-04-19)
6+
7+
### Feature
8+
9+
* feat: disjunctive license acknowledgement (#591)
10+
11+
12+
---------
13+
14+
Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`9bf1839`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/9bf1839859a244e790e91c3e1edd82d333598d60))
15+
16+
### Unknown
17+
18+
* tests: add meaningful names to validation tests (#588)
19+
20+
When packaging cyclonedx-python-lib for a Linux distribution, it’s
21+
pretty common that some JSON validation tests fail. [1]
22+
23+
Due to the large number of combinations and the fact that these tests
24+
are consecutively numbered, it has been tedious to figure out which
25+
tests are exactly failing and why. This in turn makes it difficult to
26+
decide which tests to disable or report upstream.
27+
28+
Append meaningful names to validation tests so that instead of e.g.:
29+
30+
[…]::TestJsonValidator::test_validate_no_none_001
31+
[…]::TestJsonValidator::test_validate_no_none_002
32+
[…]::TestJsonValidator::test_validate_no_none_003
33+
[…]::TestJsonValidator::test_validate_no_none_004
34+
[…]::TestJsonValidator::test_validate_no_none_005
35+
[…]::TestJsonValidator::test_validate_no_none_006
36+
[…]::TestJsonValidator::test_validate_no_none_007
37+
[…]::TestJsonValidator::test_validate_no_none_008
38+
39+
the tests are named:
40+
41+
[…]::TestJsonValidator::test_validate_no_none_001_valid_component_swid_1_6
42+
[…]::TestJsonValidator::test_validate_no_none_002_valid_machine_learning_considerations_env_1_6
43+
[…]::TestJsonValidator::test_validate_no_none_003_valid_metadata_tool_1_6
44+
[…]::TestJsonValidator::test_validate_no_none_004_valid_patch_1_6
45+
[…]::TestJsonValidator::test_validate_no_none_005_valid_empty_components_1_6
46+
[…]::TestJsonValidator::test_validate_no_none_006_valid_properties_1_6
47+
[…]::TestJsonValidator::test_validate_no_none_007_valid_service_1_6
48+
[…]::TestJsonValidator::test_validate_no_none_008_valid_metadata_author_1_6
49+
50+
[1]: https://aur.archlinux.org/cgit/aur.git/diff/PKGBUILD?h=python-cyclonedx-lib&amp;id=9c6ae556874a633a521407a77a9a85bb31da2047
51+
52+
Signed-off-by: Claudia &lt;claui@users.noreply.github.com&gt; ([`ae3f79c`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/ae3f79cbaeecda94948bff6a64ab797c5ddd934a))
53+
54+
* doc: poor merge resolved
55+
56+
Signed-off-by: Paul Horton &lt;paul.horton@owasp.org&gt; ([`a498faa`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/a498faaab248d0512bad9e66afbd8fb1d6c42a66))
57+
58+
559
## v7.1.0 (2024-04-10)
660

761
### Documentation

cyclonedx/__init__.py

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

2121
# !! version is managed by semantic_release
2222
# do not use typing here, or else `semantic_release` might have issues finding the variable
23-
__version__ = "7.1.0" # noqa:Q000
23+
__version__ = "7.2.0" # noqa:Q000

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 = '7.1.0'
23+
release = '7.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 = "7.1.0"
8+
version = "7.2.0"
99
description = "Python library for CycloneDX"
1010
authors = [
1111
"Paul Horton <phorton@sonatype.com>",

0 commit comments

Comments
 (0)