From f85ee01480873123d37c8a36e61debd35b930e06 Mon Sep 17 00:00:00 2001 From: Tom Jakubowski Date: Thu, 31 Oct 2024 19:47:27 -0700 Subject: [PATCH] ditch test version --- Cargo.lock | 14 +++++++------- examples/rust-axum/Cargo.toml | 2 +- rust/lint/Cargo.toml | 2 +- rust/perspective-client/Cargo.toml | 2 +- rust/perspective-js/Cargo.toml | 4 ++-- rust/perspective-python/Cargo.toml | 6 +++--- rust/perspective-server/Cargo.toml | 4 ++-- rust/perspective-viewer/Cargo.toml | 6 +++--- rust/perspective/Cargo.toml | 6 +++--- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0211951e72..c3ea2b1a15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1783,7 +1783,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "perspective" -version = "3.1.3" +version = "3.1.4" dependencies = [ "async-lock", "axum", @@ -1823,7 +1823,7 @@ dependencies = [ [[package]] name = "perspective-client" -version = "3.1.3" +version = "3.1.4" dependencies = [ "async-lock", "futures", @@ -1845,7 +1845,7 @@ dependencies = [ [[package]] name = "perspective-js" -version = "3.1.3" +version = "3.1.4" dependencies = [ "anyhow", "base64 0.13.1", @@ -1874,7 +1874,7 @@ dependencies = [ [[package]] name = "perspective-lint" -version = "3.1.3" +version = "3.1.4" dependencies = [ "glob", "yew-fmt", @@ -1893,7 +1893,7 @@ dependencies = [ [[package]] name = "perspective-python" -version = "3.1.3" +version = "3.1.4" dependencies = [ "async-lock", "cmake", @@ -1913,7 +1913,7 @@ dependencies = [ [[package]] name = "perspective-server" -version = "3.1.3" +version = "3.1.4" dependencies = [ "async-lock", "base64 0.22.1", @@ -1929,7 +1929,7 @@ dependencies = [ [[package]] name = "perspective-viewer" -version = "3.1.3" +version = "3.1.4" dependencies = [ "anyhow", "async-lock", diff --git a/examples/rust-axum/Cargo.toml b/examples/rust-axum/Cargo.toml index b36d26af7c..4844910197 100644 --- a/examples/rust-axum/Cargo.toml +++ b/examples/rust-axum/Cargo.toml @@ -17,7 +17,7 @@ edition = "2021" publish = false [dependencies] -perspective = { version = "3.1.4-test1", path = "../../rust/perspective" } +perspective = { version = "3.1.4", path = "../../rust/perspective" } axum = { version = ">=0.7,<2", features = ["ws"] } futures = "0.3" tokio = { version = "1.0", features = ["full"] } diff --git a/rust/lint/Cargo.toml b/rust/lint/Cargo.toml index c4eb506f7b..ed68d06778 100644 --- a/rust/lint/Cargo.toml +++ b/rust/lint/Cargo.toml @@ -13,7 +13,7 @@ [package] name = "perspective-lint" description = "A CLI utility to lint rust code" -version = "3.1.4-test1" +version = "3.1.4" edition = "2021" publish = false diff --git a/rust/perspective-client/Cargo.toml b/rust/perspective-client/Cargo.toml index 21eb4a01ee..8ab06650a7 100644 --- a/rust/perspective-client/Cargo.toml +++ b/rust/perspective-client/Cargo.toml @@ -12,7 +12,7 @@ [package] name = "perspective-client" -version = "3.1.4-test1" +version = "3.1.4" authors = ["Andrew Stein "] edition = "2021" description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets." diff --git a/rust/perspective-js/Cargo.toml b/rust/perspective-js/Cargo.toml index f3a82b8e7b..2c9427c98e 100644 --- a/rust/perspective-js/Cargo.toml +++ b/rust/perspective-js/Cargo.toml @@ -12,7 +12,7 @@ [package] name = "perspective-js" -version = "3.1.4-test1" +version = "3.1.4" authors = ["Andrew Stein "] edition = "2021" description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets." @@ -47,7 +47,7 @@ anyhow = "1.0.66" wasm-bindgen-test = "0.3.13" [dependencies] -perspective-client = { path = "../perspective-client", version = "3.1.4-test1" } +perspective-client = { path = "../perspective-client", version = "3.1.4" } base64 = "0.13.0" chrono = "0.4" extend = "1.1.2" diff --git a/rust/perspective-python/Cargo.toml b/rust/perspective-python/Cargo.toml index ad4daa706c..edd18f7d1e 100644 --- a/rust/perspective-python/Cargo.toml +++ b/rust/perspective-python/Cargo.toml @@ -12,7 +12,7 @@ [package] name = "perspective-python" -version = "3.1.4-test1" +version = "3.1.4" edition = "2021" description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets." repository = "https://github.com/finos/perspective" @@ -59,8 +59,8 @@ python-config-rs = "0.1.2" # NOTE: when building from the git repo, these perspective-* dependencies are # overridden with path dependencies in .cargo/config.toml. This is done to # support the sdist, which doesn't include these packages. -perspective-client = { version = "3.1.4-test1" } -perspective-server = { version = "3.1.4-test1" } +perspective-client = { version = "3.1.4" } +perspective-server = { version = "3.1.4" } async-lock = "2.5.0" pollster = "0.3.0" extend = "1.1.2" diff --git a/rust/perspective-server/Cargo.toml b/rust/perspective-server/Cargo.toml index 5fe9865af5..a8eb2a1898 100644 --- a/rust/perspective-server/Cargo.toml +++ b/rust/perspective-server/Cargo.toml @@ -12,7 +12,7 @@ [package] name = "perspective-server" -version = "3.1.4-test1" +version = "3.1.4" authors = ["Andrew Stein "] edition = "2021" description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets." @@ -47,7 +47,7 @@ shlex = "1.3.0" [dependencies] link-cplusplus = "1.0.9" -perspective-client = { version = "3.1.4-test1", path = "../perspective-client" } +perspective-client = { version = "3.1.4", path = "../perspective-client" } async-lock = "2.5.0" tracing = { version = ">=0.1.36" } futures = "0.3" diff --git a/rust/perspective-viewer/Cargo.toml b/rust/perspective-viewer/Cargo.toml index 4f7c191331..16d2679770 100644 --- a/rust/perspective-viewer/Cargo.toml +++ b/rust/perspective-viewer/Cargo.toml @@ -12,7 +12,7 @@ [package] name = "perspective-viewer" -version = "3.1.4-test1" +version = "3.1.4" authors = ["Andrew Stein "] edition = "2021" description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets." @@ -46,8 +46,8 @@ anyhow = "1.0.66" wasm-bindgen-test = "0.3.13" [dependencies] -perspective-client = { path = "../perspective-client", version = "3.1.4-test1" } -perspective-js = { path = "../perspective-js", version = "3.1.4-test1" } +perspective-client = { path = "../perspective-client", version = "3.1.4" } +perspective-js = { path = "../perspective-js", version = "3.1.4" } # Provides async `Mutex` for locked sections such as `render` async-lock = "2.5.0" diff --git a/rust/perspective/Cargo.toml b/rust/perspective/Cargo.toml index 1559144038..56599ccce1 100644 --- a/rust/perspective/Cargo.toml +++ b/rust/perspective/Cargo.toml @@ -12,7 +12,7 @@ [package] name = "perspective" -version = "3.1.4-test1" +version = "3.1.4" authors = ["Andrew Stein "] edition = "2021" description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets." @@ -38,8 +38,8 @@ external-cpp = [ [dependencies] async-lock = "2.5.0" -perspective-client = { version = "3.1.4-test1", path = "../perspective-client" } -perspective-server = { version = "3.1.4-test1", path = "../perspective-server" } +perspective-client = { version = "3.1.4", path = "../perspective-client" } +perspective-server = { version = "3.1.4", path = "../perspective-server" } tracing = { version = ">=0.1.36" } axum = { version = ">=0.7,<2", features = ["ws"], optional = true }