From 9bffe05806ccb14ed6a2ddac53b7dd8b227e822f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 19:46:46 +0100 Subject: [PATCH] Release graph 0.3.1 (#122) Co-authored-by: github-actions --- crates/algos/Cargo.toml | 2 +- crates/app/Cargo.toml | 2 +- crates/mate/Cargo.toml | 2 +- crates/server/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/algos/Cargo.toml b/crates/algos/Cargo.toml index 206ae06..dc9f826 100644 --- a/crates/algos/Cargo.toml +++ b/crates/algos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graph" -version = "0.3.0" +version = "0.3.1" description = "A library of high-performant graph algorithms." keywords = ["graph", "algorithms", "parallel"] authors.workspace = true diff --git a/crates/app/Cargo.toml b/crates/app/Cargo.toml index 3697203..27074c0 100644 --- a/crates/app/Cargo.toml +++ b/crates/app/Cargo.toml @@ -23,7 +23,7 @@ polars.workspace = true [dependencies.graph] path = "../algos" -version = "^0.3.0" +version = "^0.3.1" features = ["clap"] [dependencies.kommandozeile] diff --git a/crates/mate/Cargo.toml b/crates/mate/Cargo.toml index d157883..120b09f 100644 --- a/crates/mate/Cargo.toml +++ b/crates/mate/Cargo.toml @@ -21,7 +21,7 @@ default = [] extension-module = ["pyo3/extension-module"] [dependencies] -graph = { path = "../algos", version = "^0.3.0" } +graph = { path = "../algos", version = "^0.3.1" } log.workspace = true numpy.workspace = true pyo3-log.workspace = true diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index aa94156..0df531d 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -19,7 +19,7 @@ async-trait.workspace = true clap.workspace = true env_logger.workspace = true futures.workspace = true -graph = { path = "../algos", version = "^0.3.0", features = ["serde"] } +graph = { path = "../algos", version = "^0.3.1", features = ["serde"] } itertools.workspace = true log.workspace = true parking_lot.workspace = true