diff --git a/Cargo.lock b/Cargo.lock index 148a846da3..7b868a2986 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -748,7 +748,7 @@ dependencies = [ [[package]] name = "custom_python_extension" -version = "0.1.0" +version = "0.1.1" dependencies = [ "pyo3", "pyo3-build-config", @@ -1007,7 +1007,7 @@ checksum = "0198b9d0078e0f30dedc7acbb21c974e838fc8fae3ee170128658a98cb2c1c04" [[package]] name = "examples" -version = "0.5.6" +version = "0.5.7" dependencies = [ "chrono", "itertools", @@ -1688,7 +1688,7 @@ dependencies = [ [[package]] name = "js-raphtory" -version = "0.5.6" +version = "0.5.7" dependencies = [ "chrono", "console_error_panic_hook", @@ -2756,7 +2756,7 @@ dependencies = [ [[package]] name = "raphtory" -version = "0.5.6" +version = "0.5.7" dependencies = [ "arrow2", "bincode", @@ -2807,7 +2807,7 @@ dependencies = [ [[package]] name = "raphtory-benchmark" -version = "0.5.6" +version = "0.5.7" dependencies = [ "criterion", "rand 0.8.5", @@ -2818,7 +2818,7 @@ dependencies = [ [[package]] name = "raphtory-graphql" -version = "0.5.6" +version = "0.5.7" dependencies = [ "async-graphql", "async-graphql-poem", @@ -2849,7 +2849,7 @@ dependencies = [ [[package]] name = "raphtory-pymodule" -version = "0.5.6" +version = "0.5.7" dependencies = [ "openssl", "pyo3", @@ -2861,7 +2861,7 @@ dependencies = [ [[package]] name = "raphtory-rust-benchmark" -version = "0.5.6" +version = "0.5.7" dependencies = [ "chrono", "clap 4.3.11", diff --git a/Cargo.toml b/Cargo.toml index 805f2bc3f5..5b07049519 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ default-members = ["raphtory"] [workspace.package] -version = "0.5.6" +version = "0.5.7" 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 15023b0c17..83d0bff70a 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.5.6", package = "raphtory", features = ["io"] } +raphtory = { path = "../../../raphtory", version = "0.5.7", 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/examples/custom_python_extension/Cargo.toml b/examples/custom_python_extension/Cargo.toml index 00475beb50..e78c07ab21 100644 --- a/examples/custom_python_extension/Cargo.toml +++ b/examples/custom_python_extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_python_extension" -version = "0.1.0" +version = "0.1.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -14,4 +14,4 @@ crate-type = ["cdylib"] [build-dependencies] -pyo3-build-config = "0.19.2" \ No newline at end of file +pyo3-build-config = "0.19.2" diff --git a/python/Cargo.toml b/python/Cargo.toml index f6c86e7509..afd2fb1612 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -20,8 +20,8 @@ crate-type = ["cdylib"] [dependencies] pyo3 = {version= "0.19.2", features=["multiple-pymethods", "chrono"]} pyo3-asyncio = { version = "0.19.0", features = ["tokio-runtime"] } -raphtory_core = {path = "../raphtory", version = "0.5.6", features=["python"], package="raphtory" } -raphtory-graphql = {path = "../raphtory-graphql", version = "0.5.6" } +raphtory_core = {path = "../raphtory", version = "0.5.7", features=["python"], package="raphtory" } +raphtory-graphql = {path = "../raphtory-graphql", version = "0.5.7" } openssl = { version = "0.10", features = ["vendored"] } # DO NOT REMOVE IT BREAKS PYTHON RELEASE diff --git a/raphtory-graphql/Cargo.toml b/raphtory-graphql/Cargo.toml index 66e2cc48e8..0da2b8f966 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.5.6" } +raphtory = { path = "../raphtory", version = "0.5.7" } bincode = "1" base64 = "0.21.2" thiserror = "1.0.44"