Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Jabs <[email protected]>
  • Loading branch information
chrjabs committed Jan 11, 2024
1 parent 4fce9b2 commit 2af9db9
Show file tree
Hide file tree
Showing 12 changed files with 96 additions and 15 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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

## [0.4.1] - 2024-01-11

### Documentation

- Improve doc examples
- Add shields to READMEs

### Features

- Helpful shortcuts in instances and solver
- Index assignments by var and negate ternary vals

<!-- generated by git-cliff -->
## [0.4.0] - 2023-12-18

### Bug Fixes
Expand Down
16 changes: 16 additions & 0 deletions cadical/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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

## [0.2.2] - 2024-01-11

### Bug Fixes

- Specify c++ std version in cadical build

### Documentation

- Mention broken windows build
- Add shields to READMEs

### Features

- Cadical versions 1.9.[3-4]

<!-- generated by git-cliff -->
## [0.2.1] - 2023-12-18

### Features
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.2.1"
version = "0.2.2"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -40,7 +40,7 @@ v1-9-4 = []

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.4.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.4.1", path = "../rustsat", default-features = false }

[build-dependencies]
cc = { version = "1.0.83", features = ["parallel"] }
Expand Down
17 changes: 17 additions & 0 deletions glucose/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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

## [0.2.2] - 2024-01-11

### Bug Fixes

- Build on non-linux
- Test with minisat by default
- Avoid pthread.h import

### Documentation

- Add shields to READMEs

### Features

- Debug feature

<!-- generated by git-cliff -->
## [0.2.1] - 2023-12-18

### Miscellaneous Tasks
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.2.1"
version = "0.2.2"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand All @@ -18,7 +18,7 @@ debug = []

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.4.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.4.1", path = "../rustsat", default-features = false }

[build-dependencies]
cc = { version = "1.0.83", features = ["parallel"] }
Expand Down
8 changes: 8 additions & 0 deletions kissat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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

## [0.1.4] - 2024-01-11

### Documentation

- Mention broken windows build
- Add shields to READMEs

<!-- generated by git-cliff -->
## [0.1.3] - 2023-12-18

### Miscellaneous Tasks
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.1.3"
version = "0.1.4"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand All @@ -26,7 +26,7 @@ sc2022-bulky = []

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.4.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.4.1", path = "../rustsat", default-features = false }

[build-dependencies]
cc = { version = "1.0.83", features = ["parallel"] }
Expand Down
16 changes: 16 additions & 0 deletions minisat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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

## [0.2.2] - 2024-01-11

### Bug Fixes

- Build on non-linux
- Test with minisat by default

### Documentation

- Add shields to READMEs

### Features

- Debug feature

<!-- generated by git-cliff -->
## [0.2.1] - 2023-12-18

### Miscellaneous Tasks
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.2.1"
version = "0.2.2"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand All @@ -18,7 +18,7 @@ debug = []

[dependencies]
cpu-time = "1.0.0"
rustsat = { version = "0.4.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.4.1", path = "../rustsat", default-features = false }

[build-dependencies]
cc = { version = "1.0.83", features = ["parallel"] }
Expand Down
6 changes: 3 additions & 3 deletions rustsat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat"
version = "0.4.0"
version = "0.4.1"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -31,8 +31,8 @@ pyo3-build-config = { version = "0.20.0", optional = true }

[dev-dependencies]
inline-c = "0.1.7"
rustsat-minisat = { version = "0.2.1", path = "../minisat" }
rustsat-tools = { version = "0.2.1", path = "../tools" }
rustsat-minisat = { version = "0.2.2", path = "../minisat" }
rustsat-tools = { version = "0.2.2", path = "../tools" }

[features]
default = [
Expand Down
11 changes: 11 additions & 0 deletions tools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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

## [0.2.2] - 2024-01-11

### Bug Fixes

- Test with minisat by default

### Documentation

- Add shields to READMEs

<!-- generated by git-cliff -->
## [0.2.1] - 2023-12-18

### Miscellaneous Tasks
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.2.1"
version = "0.2.2"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand All @@ -12,9 +12,9 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustsat = { version = "0.4.0", path = "../rustsat", features = ["compression", "multiopt", "rand", "internals"] }
rustsat-cadical = { version = "0.2.1", path = "../cadical", optional = true }
rustsat-minisat = { version = "0.2.1", path = "../minisat", optional = true }
rustsat = { version = "0.4.1", path = "../rustsat", features = ["compression", "multiopt", "rand", "internals"] }
rustsat-cadical = { version = "0.2.2", path = "../cadical", optional = true }
rustsat-minisat = { version = "0.2.2", 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 2af9db9

Please sign in to comment.