Skip to content

Commit

Permalink
Release OxiDD 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nhusung committed Nov 20, 2024
1 parent 6b8790f commit 39aa6fa
Show file tree
Hide file tree
Showing 23 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.15)

project(OxiDD
VERSION 0.8.1
VERSION 0.9.0
DESCRIPTION "Concurrent Decision Diagram Library"
HOMEPAGE_URL "https://oxidd.net"
LANGUAGES CXX)
Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

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

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ homepage = "https://oxidd.net"
arcslab = { version = "0.1", path = "crates/arcslab", default-features = false }
hugealloc = { version = "0.1", path = "crates/hugealloc", default-features = false }
linear-hashtbl = { version = "0.1", path = "crates/linear-hashtbl", default-features = false }
oxidd = { version = "0.8", path = "crates/oxidd", default-features = false }
oxidd-cache = { version = "0.8", path = "crates/oxidd-cache", default-features = false }
oxidd-core = { version = "0.8", path = "crates/oxidd-core", default-features = false }
oxidd-derive = { version = "0.8", path = "crates/oxidd-derive", default-features = false }
oxidd-dump = { version = "0.3", path = "crates/oxidd-dump", default-features = false }
oxidd-manager-index = { version = "0.8", path = "crates/oxidd-manager-index", default-features = false }
oxidd-manager-pointer = { version = "0.3", path = "crates/oxidd-manager-pointer", default-features = false }
oxidd = { version = "0.9", path = "crates/oxidd", default-features = false }
oxidd-cache = { version = "0.9", path = "crates/oxidd-cache", default-features = false }
oxidd-core = { version = "0.9", path = "crates/oxidd-core", default-features = false }
oxidd-derive = { version = "0.9", path = "crates/oxidd-derive", default-features = false }
oxidd-dump = { version = "0.4", path = "crates/oxidd-dump", default-features = false }
oxidd-manager-index = { version = "0.9", path = "crates/oxidd-manager-index", default-features = false }
oxidd-manager-pointer = { version = "0.4", path = "crates/oxidd-manager-pointer", default-features = false }
oxidd-parser = { version = "0.3", path = "crates/oxidd-parser", default-features = false }
oxidd-reorder = { version = "0.3", path = "crates/oxidd-reorder", default-features = false }
oxidd-rules-bdd = { version = "0.8", path = "crates/oxidd-rules-bdd", default-features = false }
oxidd-rules-mtbdd = { version = "0.3", path = "crates/oxidd-rules-mtbdd", default-features = false }
oxidd-rules-tdd = { version = "0.3", path = "crates/oxidd-rules-tdd", default-features = false }
oxidd-rules-zbdd = { version = "0.8", path = "crates/oxidd-rules-zbdd", default-features = false }
oxidd-test-utils = { version = "0.3", path = "crates/oxidd-test-utils", default-features = false }
oxidd-reorder = { version = "0.4", path = "crates/oxidd-reorder", default-features = false }
oxidd-rules-bdd = { version = "0.9", path = "crates/oxidd-rules-bdd", default-features = false }
oxidd-rules-mtbdd = { version = "0.4", path = "crates/oxidd-rules-mtbdd", default-features = false }
oxidd-rules-tdd = { version = "0.4", path = "crates/oxidd-rules-tdd", default-features = false }
oxidd-rules-zbdd = { version = "0.9", path = "crates/oxidd-rules-zbdd", default-features = false }
oxidd-test-utils = { version = "0.4", path = "crates/oxidd-test-utils", default-features = false }


[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion crates/arcslab/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arcslab"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Slab, but with reference counted items"

Expand Down
2 changes: 1 addition & 1 deletion crates/hugealloc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugealloc"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Hugepage-aware allocator"

Expand Down
2 changes: 1 addition & 1 deletion crates/linear-hashtbl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linear-hashtbl"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Linear probing hash table"
categories = ["data-structures"]
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-cache"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
description = "Apply cache for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-cli"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
description = "Command line interface for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-core"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
description = "Core traits and types of the OxiDD decision diagram framework"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-derive"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
description = "Derive macros for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-dump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-dump"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "Dump OxiDD decision diagrams to file"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-ffi-c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-ffi-c"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
description = "Foreign function interface for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-ffi-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-ffi-python"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
description = "Python interface for OxiDD"
readme = "../../bindings/python/README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-manager-index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-manager-index"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
description = "Index-based manager implementation for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-manager-pointer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-manager-pointer"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "Pointer-based manager implementation for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-reorder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-reorder"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Reordering algorithms for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-rules-bdd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-rules-bdd"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
description = "Binary decision diagrams (BDDs) for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-rules-mtbdd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-rules-mtbdd"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Multi-terminal decision diagrams (MTBDDs) for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-rules-tdd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-rules-tdd"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Ternary decision diagrams (TDDs) for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-rules-zbdd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-rules-zbdd"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
description = "Zero-suppressed decision diagrams (ZBDDs) for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd-test-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd-test-utils"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Test utilities for OxiDD"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/oxidd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxidd"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
description = "A safe, concurrent, modular, and performant decision diagram framework."
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "oxidd"
version = "0.8.1"
version = "0.9.0"
description = "Decision Diagrams"
requires-python = ">=3.9"
keywords = ["Decision Diagrams", "BDD", "ZBDD", "ZDD"]
Expand Down

0 comments on commit 39aa6fa

Please sign in to comment.