Skip to content

Commit edb4a78

Browse files
authored
chore: release v0.5.0 (#60)
1 parent 10a8437 commit edb4a78

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

crackers/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/toolCHAINZ/crackers/compare/crackers-v0.4.0...crackers-v0.5.0) - 2025-08-21
11+
12+
### Other
13+
14+
- bump z3 ([#59](https://github.com/toolCHAINZ/crackers/pull/59))
15+
1016
## [0.4.0](https://github.com/toolCHAINZ/crackers/compare/crackers-v0.3.0...crackers-v0.4.0) - 2025-08-14
1117

1218
### Other

crackers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crackers"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
readme = "../README.md"
55
authors = ["toolCHAINZ"]
66
license = "MIT"

crackers_python/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/toolCHAINZ/crackers/compare/crackers_python-v0.4.0...crackers_python-v0.5.0) - 2025-08-21
11+
12+
### Added
13+
14+
- use release-plz ([#45](https://github.com/toolCHAINZ/crackers/pull/45))
15+
16+
### Fixed
17+
18+
- verify reference program operations against blacklist ([#51](https://github.com/toolCHAINZ/crackers/pull/51))
19+
20+
### Other
21+
22+
- bump z3 ([#59](https://github.com/toolCHAINZ/crackers/pull/59))
23+
- release v0.4.0 ([#58](https://github.com/toolCHAINZ/crackers/pull/58))
24+
- bump deps ([#57](https://github.com/toolCHAINZ/crackers/pull/57))
25+
- release v0.3.0 ([#56](https://github.com/toolCHAINZ/crackers/pull/56))
26+
- [**breaking**] bump jingle and z3 ([#55](https://github.com/toolCHAINZ/crackers/pull/55))
27+
- release v0.2.1 ([#54](https://github.com/toolCHAINZ/crackers/pull/54))
28+
- release v0.2.0 ([#52](https://github.com/toolCHAINZ/crackers/pull/52))
29+
- release v0.1.3 ([#50](https://github.com/toolCHAINZ/crackers/pull/50))
30+
- release ([#46](https://github.com/toolCHAINZ/crackers/pull/46))
31+
- Update refs ([#41](https://github.com/toolCHAINZ/crackers/pull/41))
32+
- Add import for mac OS wheel ([#40](https://github.com/toolCHAINZ/crackers/pull/40))
33+
- Fix Linux Z3 Dynamic Linking ([#38](https://github.com/toolCHAINZ/crackers/pull/38))
34+
- Re-enable ARM linux wheel ([#37](https://github.com/toolCHAINZ/crackers/pull/37))
35+
- Add JSON de/serialization to python ([#36](https://github.com/toolCHAINZ/crackers/pull/36))
36+
- Update Python Type Annotations ([#35](https://github.com/toolCHAINZ/crackers/pull/35))
37+
- Add Python Type Annotations ([#34](https://github.com/toolCHAINZ/crackers/pull/34))
38+
- Enhanced Python Constraint Support ([#27](https://github.com/toolCHAINZ/crackers/pull/27))
39+
- Rust 2024 Edition ([#26](https://github.com/toolCHAINZ/crackers/pull/26))
40+
- Add Python CI ([#25](https://github.com/toolCHAINZ/crackers/pull/25))
41+
- pyo3 bindings ([#21](https://github.com/toolCHAINZ/crackers/pull/21))
42+
1043
## [0.4.0](https://github.com/toolCHAINZ/crackers/compare/crackers_python-v0.3.0...crackers_python-v0.4.0) - 2025-08-14
1144

1245
### Added

crackers_python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crackers_python"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
license = "MIT"
55
edition = "2024"
66
description = "pyo3 bindings for crackers"
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111

1212
[dependencies]
1313
pyo3 = { version = "0.25", features = ["extension-module", "py-clone"] }
14-
crackers = {path = "../crackers", features = ["pyo3"], version = "0.4.0" }
14+
crackers = {path = "../crackers", features = ["pyo3"], version = "0.5.0" }
1515
jingle = {version = "0.2.3", features = ["pyo3"]}
1616
toml_edit = "0.22.22"
1717
z3 = "0.16.0"

0 commit comments

Comments
 (0)