Skip to content

Commit ab4d108

Browse files
author
semantic-release
committed
chore(release): 9.0.1-rc.1
Automatically generated by python-semantic-release Signed-off-by: semantic-release <[email protected]>
1 parent e0da86d commit ab4d108

File tree

4 files changed

+70
-3
lines changed

4 files changed

+70
-3
lines changed

CHANGELOG.md

+67
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33

44

5+
## v9.0.1-rc.1 (2025-02-13)
6+
7+
### Unknown
8+
9+
* Merge remote-tracking branch &#39;origin/main&#39; into 9.0.0-dev ([`baaa977`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/baaa977ae4b23fe96ee2e9b165660bc93b98bc98))
10+
11+
512
## v8.8.0 (2025-02-12)
613

714
### Feature
@@ -12,6 +19,66 @@
1219
Signed-off-by: Indivar Mishra &lt;[email protected]&gt; ([`beb35f5`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/beb35f55e3e75d625db45e4ff084dee02e919ef6))
1320

1421

22+
## v9.0.0-rc.1 (2025-02-12)
23+
24+
### Breaking
25+
26+
* feat!: BomRef affect equality/comparisson (#754)
27+
28+
For some this is considered a bug-fix, for others this is a feature - it
29+
is a breaking change anyway since it modifies the order of things.
30+
31+
----
32+
33+
TODO:
34+
- [x] **every** symbol that has a property `bom-ref` MUST utilize it for
35+
dunder methods `hash`,`eq`,`gt`,`lt`,...
36+
- [x] add new test cases from #753
37+
- [x] add new test cases from #540
38+
- [x] add new test cases from #677
39+
- [x] create new tests snapshots (if applicable)
40+
41+
----
42+
43+
&gt; [!important]
44+
&gt; depends on #755
45+
46+
supersedes #678
47+
closes #678
48+
49+
fixes #753
50+
fixes #540
51+
fixes #677
52+
53+
---------
54+
55+
Signed-off-by: wkoot &lt;[email protected]&gt;
56+
Signed-off-by: Jan Kowalleck &lt;[email protected]&gt;
57+
Co-authored-by: wkoot &lt;[email protected]&gt; ([`46bc3f5`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/46bc3f53b9302159b7fa684d3cf78b08928ba731))
58+
59+
* chore(deps)!: `py-serializable==^1.1.1` -&gt; `^2.0.0` (#775)
60+
61+
bump to `py-serializable` v2.0.0:
62+
&lt;https://github.com/madpah/serializable/releases/tag/v2.0.0&gt;
63+
This is considered a breaking change, as downstream users might rely on
64+
the same package&#39;s previous version.
65+
66+
Signed-off-by: Jan Kowalleck &lt;[email protected]&gt; ([`7c20c8e`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/7c20c8e44fbc3de2942dd2f2ad298be2bd17614b))
67+
68+
* refactor!: streamline comparison/hashing functions (#755)
69+
70+
we have different methods of object comparison here and there, some work
71+
on tuples, other on hashes, other on different structures.
72+
73+
this PR streamlines this.
74+
75+
these changes might cause breaking changes for downstream users.
76+
77+
---------
78+
79+
Signed-off-by: Jan Kowalleck &lt;[email protected]&gt; ([`fd9b755`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/fd9b7559a49bdaf3f6d9fe9fea54db8a65958c01))
80+
81+
1582
## v8.7.0 (2025-02-06)
1683

1784
### Feature

cyclonedx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
# !! version is managed by semantic_release
2424
# do not use typing here, or else `semantic_release` might have issues finding the variable
25-
__version__ = "9.0.0-rc.1" # noqa:Q000
25+
__version__ = "9.0.1-rc.1" # noqa:Q000

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
# The full version, including alpha/beta/rc tags
2525
# !! version is managed by semantic_release
26-
release = '9.0.0-rc.1'
26+
release = '9.0.1-rc.1'
2727

2828
# -- General configuration ---------------------------------------------------
2929

pyproject.toml

+1-1
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 = "9.0.0-rc.1"
8+
version = "9.0.1-rc.1"
99
description = "Python library for CycloneDX"
1010
authors = [
1111
"Paul Horton <[email protected]>",

0 commit comments

Comments
 (0)