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 Dec 18, 2023
1 parent 351b957 commit 4c6e761
Show file tree
Hide file tree
Showing 12 changed files with 89 additions and 12 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

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

## [0.4.0] - 2023-12-18

### Documentation

- (limited) python api documentation

### Features

- Python api expose lit, clause, cnf
- Python len and indexing support for clause and cnf
- Feature switch for python api
- Python iterators
- Totalizer and comparison operators in pyapi
- Expose all encodings in python api

### Bugfix

- Coarse convergence bounds
- Link capi tests to archive libs
- Typo in capi

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

### Refactor
Expand Down
11 changes: 11 additions & 0 deletions cadical/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

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

## [0.2.1] - 2023-12-18

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
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.0"
version = "0.2.1"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -35,7 +35,7 @@ v1-8-0 = []

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

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

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

## [0.2.1] - 2023-12-18

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
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.0"
version = "0.2.1"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand All @@ -18,7 +18,7 @@ glucose4-1 = []

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

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

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

## [0.1.3] - 2023-12-18

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
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.2"
version = "0.1.3"
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.3.0", path = "../rustsat", default-features = false }
rustsat = { version = "0.4.0", path = "../rustsat", default-features = false }

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

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

## [0.2.1] - 2023-12-18

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
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.0"
version = "0.2.1"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand All @@ -15,7 +15,7 @@ build = "build.rs"

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

[build-dependencies]
cc = { version = "1.0.83", features = ["parallel"] }
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.3.0"
version = "0.4.0"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand Down
11 changes: 11 additions & 0 deletions tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

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

## [0.2.1] - 2023-12-18

### Miscellaneous Tasks

- Updated the following local packages: rustsat

<!-- generated by git-cliff -->
6 changes: 3 additions & 3 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.0"
version = "0.2.1"
edition = "2021"
authors = ["Christoph Jabs <[email protected]>"]
license = "MIT"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustsat = { version = "0.3.0", path = "../rustsat", features = ["compression", "multiopt", "rand", "internals"] }
rustsat-cadical = { version = "0.2.0", path = "../cadical" }
rustsat = { version = "0.4.0", path = "../rustsat", features = ["compression", "multiopt", "rand", "internals"] }
rustsat-cadical = { version = "0.2.1", path = "../cadical" }
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 4c6e761

Please sign in to comment.