Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
rustsat-release-plz-bot[bot] authored and chrjabs committed Dec 20, 2024
1 parent c8ab3e1 commit 91a4161
Show file tree
Hide file tree
Showing 22 changed files with 97 additions and 37 deletions.
7 changes: 7 additions & 0 deletions 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.6.3] - 2024-12-20

### Miscellaneous Tasks

- Exclude unnecessary files from release

<!-- generated by git-cliff -->
## [0.6.2] - 2024-12-13

### Features
Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ thiserror = "2.0.8"
rand = "0.8.5"
rand_chacha = "0.3.1"
rustc-hash = "2.1.0"
rustsat = { version = "0.6.2", path = "./", default-features = false }
rustsat-cadical = { version = "0.4.2", path = "./cadical" }
rustsat-minisat = { version = "0.4.2", path = "./minisat" }
rustsat = { version = "0.6.3", path = "./", default-features = false }
rustsat-cadical = { version = "0.4.3", path = "./cadical" }
rustsat-minisat = { version = "0.4.3", path = "./minisat" }
rustsat-solvertests = { path = "./solvertests" }
signal-hook = "0.3.17"
tempfile = "3.14.0"
Expand All @@ -51,7 +51,7 @@ xz2 = "0.1.7"

[package]
name = "rustsat"
version = "0.6.2"
version = "0.6.3"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions batsat/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.2] - 2024-12-20

### Miscellaneous Tasks

- Exclude unnecessary files from release

<!-- generated by git-cliff -->
## [0.1.1] - 2024-12-13

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion batsat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-batsat"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["Noah Bruns <[email protected]>"]
license = "MIT"
Expand Down
11 changes: 11 additions & 0 deletions cadical/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.4.3] - 2024-12-20

### Features

- Version 2.1.1

### Miscellaneous Tasks

- Exclude unnecessary files from release

<!-- generated by git-cliff -->
## [0.4.2] - 2024-12-13

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion cadical/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-cadical"
version = "0.4.2"
version = "0.4.3"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cadical/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Armin Biere's SAT solver [CaDiCaL](https://github.com/arminbiere/cadical) to be
## CaDiCaL Versions

CaDiCaL versions can be selected via cargo crate features.
All CaDiCaL versions up to [Version 2.1.0](https://github.com/arminbiere/cadical/releases/tag/rel-2.0.0) are available.
All CaDiCaL versions up to [Version 2.1.1](https://github.com/arminbiere/cadical/releases/tag/rel-2.1.1) are available.
For the full list of versions and the changelog see [the CaDiCaL releases](https://github.com/arminbiere/cadical/releases).

Without any features selected, the newest version will be used.
Expand Down
2 changes: 1 addition & 1 deletion cadical/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//! ## CaDiCaL Versions
//!
//! CaDiCaL versions can be selected via cargo crate features.
//! All CaDiCaL versions up to [Version 2.1.0](https://github.com/arminbiere/cadical/releases/tag/rel-2.0.0) are available.
//! All CaDiCaL versions up to [Version 2.1.1](https://github.com/arminbiere/cadical/releases/tag/rel-2.1.1) are available.
//! For the full list of versions and the changelog see [the CaDiCaL releases](https://github.com/arminbiere/cadical/releases).
//!
//! Without any features selected, the newest version will be used.
Expand Down
2 changes: 1 addition & 1 deletion capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-capi"
version = "0.6.2"
version = "0.6.3"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions capi/rustsat.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#define RUSTSAT_VERSION 0.6.2
#define RUSTSAT_VERSION 0.6.3
#define RUSTSAT_VERSION_MAJOR 0
#define RUSTSAT_VERSION_MINOR 6
#define RUSTSAT_VERSION_PATCH 2
#define RUSTSAT_VERSION_PATCH 3

#ifdef __cplusplus
namespace RustSAT {
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.5] - 2024-12-20

### Miscellaneous Tasks

- Exclude unnecessary files from release

<!-- generated by git-cliff -->
## [0.3.4] - 2024-12-13

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion glucose/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-glucose"
version = "0.3.4"
version = "0.3.5"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
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.5] - 2024-12-20

### Miscellaneous Tasks

- Update Cargo.toml dependencies

<!-- generated by git-cliff -->
## [0.1.4] - 2024-12-13

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion ipasir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-ipasir"
version = "0.1.4"
version = "0.1.5"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
Expand Down
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.3.3] - 2024-12-20

### Miscellaneous Tasks

- Exclude unnecessary files from release

<!-- generated by git-cliff -->
## [0.3.2] - 2024-12-13

### Features
Expand Down
2 changes: 1 addition & 1 deletion kissat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-kissat"
version = "0.3.2"
version = "0.3.3"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
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.4.3] - 2024-12-20

### Miscellaneous Tasks

- Exclude unnecessary files from release

<!-- generated by git-cliff -->
## [0.4.2] - 2024-12-13

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion minisat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-minisat"
version = "0.4.2"
version = "0.4.3"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion pyapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-pyapi"
version = "0.6.2"
version = "0.6.3"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
Expand Down
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.4.3] - 2024-12-20

### Miscellaneous Tasks

- Exclude unnecessary files from release

<!-- generated by git-cliff -->
## [0.4.2] - 2024-12-13

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustsat-tools"
version = "0.4.2"
version = "0.4.3"
edition.workspace = true
authors = ["Christoph Jabs <[email protected]>"]
license.workspace = true
Expand Down

0 comments on commit 91a4161

Please sign in to comment.