Skip to content

Commit

Permalink
ditch test version
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjakubowski committed Nov 1, 2024
1 parent 1c66523 commit f85ee01
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/rust-axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/lint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion rust/perspective-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[package]
name = "perspective-client"
version = "3.1.4-test1"
version = "3.1.4"
authors = ["Andrew Stein <steinlink@gmail.com>"]
edition = "2021"
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
Expand Down
4 changes: 2 additions & 2 deletions rust/perspective-js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[package]
name = "perspective-js"
version = "3.1.4-test1"
version = "3.1.4"
authors = ["Andrew Stein <steinlink@gmail.com>"]
edition = "2021"
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions rust/perspective-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions rust/perspective-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[package]
name = "perspective-server"
version = "3.1.4-test1"
version = "3.1.4"
authors = ["Andrew Stein <steinlink@gmail.com>"]
edition = "2021"
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions rust/perspective-viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[package]
name = "perspective-viewer"
version = "3.1.4-test1"
version = "3.1.4"
authors = ["Andrew Stein <steinlink@gmail.com>"]
edition = "2021"
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions rust/perspective/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[package]
name = "perspective"
version = "3.1.4-test1"
version = "3.1.4"
authors = ["Andrew Stein <steinlink@gmail.com>"]
edition = "2021"
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
Expand All @@ -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 }
Expand Down

0 comments on commit f85ee01

Please sign in to comment.