diff --git a/Cargo.lock b/Cargo.lock index d78ddd817b..03f2e4979a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1086,7 +1086,7 @@ dependencies = [ [[package]] name = "examples" -version = "0.6.1" +version = "0.7.0" dependencies = [ "chrono", "itertools", @@ -1787,7 +1787,7 @@ dependencies = [ [[package]] name = "js-raphtory" -version = "0.6.1" +version = "0.7.0" dependencies = [ "chrono", "console_error_panic_hook", @@ -2077,7 +2077,7 @@ dependencies = [ [[package]] name = "netflow_algorithm" -version = "0.6.1" +version = "0.7.0" dependencies = [ "pyo3", "pyo3-build-config", @@ -2891,7 +2891,7 @@ dependencies = [ [[package]] name = "raphtory" -version = "0.6.1" +version = "0.7.0" dependencies = [ "arrow2", "async-openai", @@ -2948,7 +2948,7 @@ dependencies = [ [[package]] name = "raphtory-benchmark" -version = "0.6.1" +version = "0.7.0" dependencies = [ "criterion", "rand 0.8.5", @@ -2959,7 +2959,7 @@ dependencies = [ [[package]] name = "raphtory-graphql" -version = "0.6.1" +version = "0.7.0" dependencies = [ "async-graphql", "async-graphql-poem", @@ -2992,7 +2992,7 @@ dependencies = [ [[package]] name = "raphtory-pymodule" -version = "0.6.1" +version = "0.7.0" dependencies = [ "crossbeam-channel", "openssl", @@ -3007,7 +3007,7 @@ dependencies = [ [[package]] name = "raphtory-rust-benchmark" -version = "0.6.1" +version = "0.7.0" dependencies = [ "chrono", "clap 4.3.11", diff --git a/Cargo.toml b/Cargo.toml index 9bb983fb17..5313bc2d2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ default-members = ["raphtory"] [workspace.package] -version = "0.6.1" +version = "0.7.0" documentation = "https://raphtory.readthedocs.io/en/latest/" repository = "https://github.com/Raphtory/raphtory/" license = "GPL-3.0" diff --git a/comparison-benchmark/rust/raphtory-rust-benchmark/Cargo.toml b/comparison-benchmark/rust/raphtory-rust-benchmark/Cargo.toml index 6357f941bb..d2febbe3a3 100644 --- a/comparison-benchmark/rust/raphtory-rust-benchmark/Cargo.toml +++ b/comparison-benchmark/rust/raphtory-rust-benchmark/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 = { path = "../../../raphtory", version = "0.6.1", package = "raphtory", features = ["io"] } +raphtory = { path = "../../../raphtory", version = "0.7.0", package = "raphtory", features = ["io"] } chrono = { version = "0.4", features = ["serde"] } serde = { version = "1", features = ["derive","rc"] } clap = { version = "4.3.11", features = ["derive"] } diff --git a/python/Cargo.toml b/python/Cargo.toml index 0ecdea93c3..d91ba23fa5 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -19,8 +19,8 @@ crate-type = ["cdylib"] [dependencies] pyo3 = {version= "0.19.2", features=["multiple-pymethods", "chrono"]} -raphtory_core = {path = "../raphtory", version = "0.6.1", features=["python", "search", "vectors"], package="raphtory" } -raphtory-graphql = {path = "../raphtory-graphql", version = "0.6.1" } +raphtory_core = {path = "../raphtory", version = "0.7.0", features=["python", "search", "vectors"], package="raphtory" } +raphtory-graphql = {path = "../raphtory-graphql", version = "0.7.0" } openssl = { version = "0.10", features = ["vendored"] } # DO NOT REMOVE IT BREAKS PYTHON RELEASE serde_json = "1.0.108" reqwest = "0.11.22" diff --git a/raphtory-graphql/Cargo.toml b/raphtory-graphql/Cargo.toml index aa228631d6..67a28d59ea 100644 --- a/raphtory-graphql/Cargo.toml +++ b/raphtory-graphql/Cargo.toml @@ -13,7 +13,7 @@ readme.workspace = true homepage.workspace = true [dependencies] -raphtory = { path = "../raphtory", version = "0.6.1", features = ['vectors', 'search'] } +raphtory = { path = "../raphtory", version = "0.7.0", features = ['vectors', 'search'] } bincode = "1" base64 = "0.21.2" thiserror = "1.0.44"