diff --git a/Cargo.lock b/Cargo.lock index 9ddc2916a..a6e0226d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1958,7 +1958,7 @@ dependencies = [ [[package]] name = "examples" -version = "0.11.0" +version = "0.11.1" dependencies = [ "chrono", "itertools 0.13.0", @@ -2698,7 +2698,7 @@ dependencies = [ [[package]] name = "js-raphtory" -version = "0.11.0" +version = "0.11.1" dependencies = [ "chrono", "console_error_panic_hook", @@ -3942,7 +3942,7 @@ dependencies = [ [[package]] name = "pometry-storage" -version = "0.11.0" +version = "0.11.1" [[package]] name = "portable-atomic" @@ -4330,7 +4330,7 @@ dependencies = [ [[package]] name = "raphtory" -version = "0.11.0" +version = "0.11.1" dependencies = [ "async-openai", "async-trait", @@ -4390,7 +4390,7 @@ dependencies = [ [[package]] name = "raphtory-api" -version = "0.11.0" +version = "0.11.1" dependencies = [ "chrono", "dashmap 6.0.1", @@ -4410,7 +4410,7 @@ dependencies = [ [[package]] name = "raphtory-benchmark" -version = "0.11.0" +version = "0.11.1" dependencies = [ "clap", "criterion", @@ -4427,7 +4427,7 @@ dependencies = [ [[package]] name = "raphtory-cypher" -version = "0.11.0" +version = "0.11.1" dependencies = [ "arrow", "arrow-array", @@ -4457,7 +4457,7 @@ dependencies = [ [[package]] name = "raphtory-graphql" -version = "0.11.0" +version = "0.11.1" dependencies = [ "async-graphql", "async-graphql-poem", @@ -4499,7 +4499,7 @@ dependencies = [ [[package]] name = "raphtory-pymodule" -version = "0.11.0" +version = "0.11.1" dependencies = [ "pyo3", "pyo3-build-config", @@ -4509,7 +4509,7 @@ dependencies = [ [[package]] name = "raphtory_netflow" -version = "0.11.0" +version = "0.11.1" dependencies = [ "pyo3", "pyo3-build-config", diff --git a/Cargo.toml b/Cargo.toml index 0c4f3797c..ec4ff40a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ default-members = ["raphtory"] resolver = "2" [workspace.package] -version = "0.11.0" +version = "0.11.1" documentation = "https://raphtory.readthedocs.io/en/latest/" repository = "https://github.com/Raphtory/raphtory/" license = "GPL-3.0" diff --git a/examples/netflow/Cargo.toml b/examples/netflow/Cargo.toml index cd9b9dddb..baa861c88 100644 --- a/examples/netflow/Cargo.toml +++ b/examples/netflow/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -raphtory_core = { path = "../../raphtory", version = "0.11.0", features = ["python", "search", "vectors"], package = "raphtory" } -raphtory-graphql = { path = "../../raphtory-graphql", version = "0.11.0",features = ["python"] } +raphtory_core = { path = "../../raphtory", version = "0.11.1", features = ["python", "search", "vectors"], package = "raphtory" } +raphtory-graphql = { path = "../../raphtory-graphql", version = "0.11.1",features = ["python"] } pyo3 = { workspace = true } [lib] diff --git a/python/Cargo.toml b/python/Cargo.toml index 1db0d0e81..477d72f49 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -19,8 +19,8 @@ crate-type = ["cdylib"] [dependencies] pyo3 = { workspace = true } -raphtory_core = { path = "../raphtory", version = "0.11.0", features = ["python", "search", "vectors", "proto"], package = "raphtory" } -raphtory-graphql = { path = "../raphtory-graphql", version = "0.11.0",features = ["python"] } +raphtory_core = { path = "../raphtory", version = "0.11.1", features = ["python", "search", "vectors", "proto"], package = "raphtory" } +raphtory-graphql = { path = "../raphtory-graphql", version = "0.11.1",features = ["python"] } [features] default = ["extension-module"] diff --git a/raphtory-benchmark/Cargo.toml b/raphtory-benchmark/Cargo.toml index aae91a280..17427800c 100644 --- a/raphtory-benchmark/Cargo.toml +++ b/raphtory-benchmark/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] criterion = { workspace = true } -raphtory = { path = "../raphtory", features = ["io"], version = "0.11.0" } -raphtory-api = { path = "../raphtory-api", version = "0.11.0" } +raphtory = { path = "../raphtory", features = ["io"], version = "0.11.1" } +raphtory-api = { path = "../raphtory-api", version = "0.11.1" } pometry-storage.workspace = true sorted_vector_map = { workspace = true } rand = { workspace = true } diff --git a/raphtory-graphql/Cargo.toml b/raphtory-graphql/Cargo.toml index b3d06d9b3..13adb2831 100644 --- a/raphtory-graphql/Cargo.toml +++ b/raphtory-graphql/Cargo.toml @@ -13,8 +13,8 @@ readme.workspace = true homepage.workspace = true [dependencies] -raphtory = { path = "../raphtory", version = "0.11.0", features = ['vectors', 'search', "io"] } -raphtory-api = { path = "../raphtory-api", version = "0.11.0" } +raphtory = { path = "../raphtory", version = "0.11.1", features = ['vectors', 'search', "io"] } +raphtory-api = { path = "../raphtory-api", version = "0.11.1" } base64 = { workspace = true } thiserror = { workspace = true } itertools = { workspace = true } diff --git a/raphtory/Cargo.toml b/raphtory/Cargo.toml index 4001dae7a..c27facfd0 100644 --- a/raphtory/Cargo.toml +++ b/raphtory/Cargo.toml @@ -15,7 +15,7 @@ homepage.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -raphtory-api = { path = "../raphtory-api", version = "0.11.0" } +raphtory-api = { path = "../raphtory-api", version = "0.11.1" } chrono = { workspace = true } itertools = { workspace = true } num-traits = { workspace = true }