Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
chrjabs committed Jun 12, 2024
1 parent 07a4197 commit ff1a3d6
Show file tree
Hide file tree
Showing 19 changed files with 92 additions and 20 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

All notable changes to this project will be documented in this file.

## [0.5.1] - 2024-06-12

### Features

- Incremental precision in DPW
- Format vars and lits nicely with debug

### Bug Fixes

- Make `Node` type (of `dbtotalizer`) opaque. This is technically a breaking
change, but since the `Node` type was never intended to be transparent, we are
_not_ treating it as one. If you are relying on having access to the `Node`
type, use the feature `internal` instead, but note that the internal API is
unstable.

### Testing

- Fix warnings

<!-- generated by git-cliff -->
## [0.5.0] - 2024-04-30

This release contains breaking changes. For detailed instructions on how to
Expand Down
7 changes: 7 additions & 0 deletions cadical/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.3.1] - 2024-06-12

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
## [0.3.0] - 2024-04-30

The corresponding RustSAT release contains breaking changes. For detailed
Expand Down
4 changes: 2 additions & 2 deletions cadical/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-cadical"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand Down Expand Up @@ -41,7 +41,7 @@ v1-9-5 = []

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.5.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.5.1", path = "../rustsat", default-features = false }
thiserror = { version = "1.0.57" }
anyhow = { version = "1.0.80" }

Expand Down
4 changes: 4 additions & 0 deletions capi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [0.5.1] - 2024-06-12

Incrementally adjustable precision for DPW encoding.

## [0.5.0] - 2024-04-30

Factor C-API out into its own crate.
4 changes: 2 additions & 2 deletions capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-capi"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand All @@ -12,7 +12,7 @@ build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustsat = { version = "0.5.0", path = "../rustsat", default-features = false, features = [
rustsat = { version = "0.5.1", path = "../rustsat", default-features = false, features = [
"internals",
] }

Expand Down
7 changes: 7 additions & 0 deletions glucose/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.3.1] - 2024-06-12

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
## [0.3.0] - 2024-04-30

The corresponding RustSAT release contains breaking changes. For detailed
Expand Down
4 changes: 2 additions & 2 deletions glucose/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-glucose"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand All @@ -20,7 +20,7 @@ default = ["quiet"]

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.5.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.5.1", path = "../rustsat", default-features = false }
thiserror = { version = "1.0.57" }
anyhow = { version = "1.0.80" }

Expand Down
7 changes: 7 additions & 0 deletions ipasir/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.1.1] - 2024-06-12

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
## [0.1.0] - 2024-04-30

Factor IPASIR API out from RustSAT into its own crate.
4 changes: 2 additions & 2 deletions ipasir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-ipasir"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand All @@ -13,6 +13,6 @@ readme = "README.md"

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.5.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.5.1", path = "../rustsat", default-features = false }
thiserror = { version = "1.0.57" }
anyhow = { version = "1.0.80" }
7 changes: 7 additions & 0 deletions kissat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.2.1] - 2024-06-12

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
## [0.2.0] - 2024-04-30

The corresponding RustSAT release contains breaking changes. For detailed
Expand Down
4 changes: 2 additions & 2 deletions kissat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-kissat"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand All @@ -26,7 +26,7 @@ sc2022-bulky = []

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.5.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.5.1", path = "../rustsat", default-features = false }
thiserror = { version = "1.0.57" }
anyhow = { version = "1.0.80" }

Expand Down
7 changes: 7 additions & 0 deletions minisat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.3.1] - 2024-06-12

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
## [0.3.0] - 2024-04-30

The corresponding RustSAT release contains breaking changes. For detailed
Expand Down
4 changes: 2 additions & 2 deletions minisat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-minisat"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand All @@ -20,7 +20,7 @@ default = ["quiet"]

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.5.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.5.1", path = "../rustsat", default-features = false }
thiserror = { version = "1.0.57" }
anyhow = { version = "1.0.80" }

Expand Down
6 changes: 6 additions & 0 deletions pyapi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.5.1] - 2024-06-12

### Miscellaneous Tasks

- Updated the following local packages: rustsat

## [0.5.0] - 2024-04-30

Factor Python API out into its own crate.
4 changes: 2 additions & 2 deletions pyapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-pyapi"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand All @@ -14,7 +14,7 @@ build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustsat = { version = "0.5.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.5.1", path = "../rustsat", default-features = false }
pyo3 = { version = "0.21.1", features = [
"extension-module",
"abi3",
Expand Down
2 changes: 1 addition & 1 deletion rustsat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion solvertests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ proc-macro = true
[dependencies]
syn = "2.0"
quote = "1.0"
rustsat = { version = "0.5.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.5.1", path = "../rustsat", default-features = false }
proc-macro2 = "1.0"
7 changes: 7 additions & 0 deletions tools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.3.1] - 2024-06-12

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
## [0.3.0] - 2024-04-29

The corresponding RustSAT release contains breaking changes. For detailed
Expand Down
8 changes: 4 additions & 4 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-tools"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
license = "MIT"
Expand All @@ -12,14 +12,14 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustsat = { version = "0.5.0", path = "../rustsat", features = [
rustsat = { version = "0.5.1", path = "../rustsat", features = [
"compression",
"multiopt",
"rand",
"internals",
] }
rustsat-cadical = { version = "0.3.0", path = "../cadical", optional = true }
rustsat-minisat = { version = "0.3.0", path = "../minisat", optional = true }
rustsat-cadical = { version = "0.3.1", path = "../cadical", optional = true }
rustsat-minisat = { version = "0.3.1", path = "../minisat", optional = true }
clap = { version = "4.2.4", features = ["derive", "cargo"] }
concolor-clap = { version = "0.1.0" }
termcolor = { version = "1.2.0" }
Expand Down

0 comments on commit ff1a3d6

Please sign in to comment.