From 1c5073bead7829b09463f9b092838ffceadb5e05 Mon Sep 17 00:00:00 2001 From: Haaroon Date: Fri, 22 Nov 2024 17:43:25 +0000 Subject: [PATCH] chore: Release --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- examples/netflow/Cargo.toml | 4 ++-- examples/rust/Cargo.toml | 2 +- python/Cargo.toml | 4 ++-- raphtory-benchmark/Cargo.toml | 4 ++-- raphtory-graphql/Cargo.toml | 4 ++-- raphtory/Cargo.toml | 2 +- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df9ba1a1b..862034734 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2097,7 +2097,7 @@ dependencies = [ [[package]] name = "examples" -version = "0.13.1" +version = "0.14.0" dependencies = [ "chrono", "itertools 0.13.0", @@ -3024,7 +3024,7 @@ dependencies = [ [[package]] name = "js-raphtory" -version = "0.13.1" +version = "0.14.0" dependencies = [ "chrono", "console_error_panic_hook", @@ -4411,7 +4411,7 @@ dependencies = [ [[package]] name = "pometry-storage" -version = "0.13.1" +version = "0.14.0" [[package]] name = "portable-atomic" @@ -4809,7 +4809,7 @@ dependencies = [ [[package]] name = "raphtory" -version = "0.13.1" +version = "0.14.0" dependencies = [ "async-openai", "async-trait", @@ -4878,7 +4878,7 @@ dependencies = [ [[package]] name = "raphtory-api" -version = "0.13.1" +version = "0.14.0" dependencies = [ "bytemuck", "chrono", @@ -4903,7 +4903,7 @@ dependencies = [ [[package]] name = "raphtory-benchmark" -version = "0.13.1" +version = "0.14.0" dependencies = [ "clap", "criterion", @@ -4921,7 +4921,7 @@ dependencies = [ [[package]] name = "raphtory-cypher" -version = "0.13.1" +version = "0.14.0" dependencies = [ "arrow", "arrow-array", @@ -4952,7 +4952,7 @@ dependencies = [ [[package]] name = "raphtory-graphql" -version = "0.13.1" +version = "0.14.0" dependencies = [ "async-graphql", "async-graphql-poem", @@ -4996,7 +4996,7 @@ dependencies = [ [[package]] name = "raphtory-pymodule" -version = "0.13.1" +version = "0.14.0" dependencies = [ "numpy", "pyo3", @@ -5028,7 +5028,7 @@ dependencies = [ [[package]] name = "raphtory_netflow" -version = "0.13.1" +version = "0.14.0" dependencies = [ "pyo3", "pyo3-build-config", diff --git a/Cargo.toml b/Cargo.toml index 0cb4fff4e..570b4c065 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ default-members = ["raphtory", "raphtory-graphql"] resolver = "2" [workspace.package] -version = "0.13.1" +version = "0.14.0" 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 2d25664b8..f950f3708 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.13.1", features = ["python", "search", "vectors"], package = "raphtory" } -raphtory-graphql = { path = "../../raphtory-graphql", version = "0.13.1",features = ["python"] } +raphtory_core = { path = "../../raphtory", version = "0.14.0", features = ["python", "search", "vectors"], package = "raphtory" } +raphtory-graphql = { path = "../../raphtory-graphql", version = "0.14.0",features = ["python"] } pyo3 = { workspace = true } [lib] diff --git a/examples/rust/Cargo.toml b/examples/rust/Cargo.toml index c8e1dbeaf..8721245ba 100644 --- a/examples/rust/Cargo.toml +++ b/examples/rust/Cargo.toml @@ -30,4 +30,4 @@ name = "hulongbay" name = "crypto" [[bin]] -name = "pokec" \ No newline at end of file +name = "pokec" diff --git a/python/Cargo.toml b/python/Cargo.toml index e47d328a3..47a95e7a3 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -20,13 +20,13 @@ crate-type = ["cdylib"] [dependencies] pyo3 = { workspace = true } numpy = { workspace = true } -raphtory_core = { path = "../raphtory", version = "0.13.1", features = [ +raphtory_core = { path = "../raphtory", version = "0.14.0", features = [ "python", "search", "vectors", "proto", ], package = "raphtory" } -raphtory-graphql = { path = "../raphtory-graphql", version = "0.13.1", features = [ +raphtory-graphql = { path = "../raphtory-graphql", version = "0.14.0", features = [ "python", ] } diff --git a/raphtory-benchmark/Cargo.toml b/raphtory-benchmark/Cargo.toml index 191495b29..78b5048b4 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", "proto"], version = "0.13.1" } -raphtory-api = { path = "../raphtory-api", version = "0.13.1" } +raphtory = { path = "../raphtory", features = ["io", "proto"], version = "0.14.0" } +raphtory-api = { path = "../raphtory-api", version = "0.14.0" } 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 4259396f7..73a3f7d45 100644 --- a/raphtory-graphql/Cargo.toml +++ b/raphtory-graphql/Cargo.toml @@ -13,12 +13,12 @@ readme.workspace = true homepage.workspace = true [dependencies] -raphtory = { path = "../raphtory", version = "0.13.1", features = [ +raphtory = { path = "../raphtory", version = "0.14.0", features = [ 'vectors', 'search', "io", ] } -raphtory-api = { path = "../raphtory-api", version = "0.13.1" } +raphtory-api = { path = "../raphtory-api", version = "0.14.0" } base64 = { workspace = true } thiserror = { workspace = true } itertools = { workspace = true } diff --git a/raphtory/Cargo.toml b/raphtory/Cargo.toml index 246d42176..1460a688f 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.13.1" } +raphtory-api = { path = "../raphtory-api", version = "0.14.0" } hashbrown = { workspace = true } chrono = { workspace = true } itertools = { workspace = true }