Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions crackers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/toolCHAINZ/crackers/compare/crackers-v0.7.0...crackers-v0.8.0) - 2025-12-22

### Added

- add simple model printing to CLI ([#91](https://github.com/toolCHAINZ/crackers/pull/91))

### Other

- update readme ([#95](https://github.com/toolCHAINZ/crackers/pull/95))
- revert readme to libc example ([#92](https://github.com/toolCHAINZ/crackers/pull/92))

## [0.7.0](https://github.com/toolCHAINZ/crackers/compare/crackers-v0.6.4...crackers-v0.7.0) - 2025-12-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion crackers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crackers"
version = "0.7.0"
version = "0.8.0"
readme = "../README.md"
authors = ["toolCHAINZ"]
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions crackers_python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/toolCHAINZ/crackers/compare/crackers_python-v0.7.0...crackers_python-v0.8.0) - 2025-12-22

### Other

- add GitHub PAT support for API requests in CI setup ([#94](https://github.com/toolCHAINZ/crackers/pull/94))
- release v0.7.0 ([#90](https://github.com/toolCHAINZ/crackers/pull/90))

## [0.7.0](https://github.com/toolCHAINZ/crackers/compare/crackers_python-v0.6.4...crackers_python-v0.7.0) - 2025-12-21

### Added
Expand Down
4 changes: 2 additions & 2 deletions crackers_python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crackers_python"
version = "0.7.0"
version = "0.8.0"
license = "MIT"
edition = "2024"
description = "pyo3 bindings for crackers"
Expand All @@ -11,7 +11,7 @@ crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.27.2", features = ["extension-module", "py-clone"] }
crackers = {path = "../crackers", features = ["pyo3"], version = "0.7.0" }
crackers = {path = "../crackers", features = ["pyo3"], version = "0.8.0" }
jingle = { version = "0.4.2", features = ["pyo3"]}
toml_edit = { version = "0.23.4", features = ["serde"] }
z3 = "0.19.0"
Expand Down