Skip to content

Commit dc15c1b

Browse files
authored
Relase 2.0.2 (vega#561)
* bump versions * Fix sdist license location
1 parent 8442a07 commit dc15c1b

File tree

10 files changed

+35
-36
lines changed

10 files changed

+35
-36
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vegafusion-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vegafusion-common"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
edition = "2021"
55
description = "Common components required by multiple VegaFusion crates"
66
license = "BSD-3-Clause"

vegafusion-core/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@
22
name = "vegafusion-core"
33
license = "BSD-3-Clause"
44
edition = "2021"
5-
version = "2.0.1"
5+
version = "2.0.2"
66
description = "Core components required by multiple VegaFusion crates, with WASM compatibility"
77

8-
[lints.clippy]
9-
module_inception = "allow"
10-
118
[features]
129
tonic_support = ["tonic", "tonic-build"]
1310
py = ["pyo3", "vegafusion-common/py"]
@@ -25,6 +22,9 @@ rand = "0.8.5"
2522
json-patch = "1.0.0"
2623
log = "0.4.22"
2724

25+
[lints.clippy]
26+
module_inception = "allow"
27+
2828
[dependencies.lazy_static]
2929
workspace = true
3030

@@ -54,7 +54,7 @@ features = ["preserve_order"]
5454
[dependencies.vegafusion-common]
5555
path = "../vegafusion-common"
5656
features = ["json", "sqlparser"]
57-
version = "2.0.1"
57+
version = "2.0.2"
5858

5959
[dependencies.datafusion-common]
6060
workspace = true

vegafusion-python/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "vegafusion"
33
license = "BSD-3-Clause"
44
edition = "2021"
5-
version = "2.0.1"
5+
version = "2.0.2"
66
description = "VegaFusion Python interface"
77

88
[lib]
@@ -47,16 +47,16 @@ workspace = true
4747
[dependencies.vegafusion-common]
4848
path = "../vegafusion-common"
4949
features = ["pyo3", "base64"]
50-
version = "2.0.1"
50+
version = "2.0.2"
5151

5252
[dependencies.vegafusion-core]
5353
path = "../vegafusion-core"
5454
features = ["py", "tonic_support"]
55-
version = "2.0.1"
55+
version = "2.0.2"
5656

5757
[dependencies.vegafusion-runtime]
5858
path = "../vegafusion-runtime"
59-
version = "2.0.1"
59+
version = "2.0.2"
6060

6161
[dependencies.tokio]
6262
workspace = true

vegafusion-python/pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[project]
22
name = "vegafusion"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "Core tools for using VegaFusion from Python"
55
readme = "README.md"
6+
license = {file = "LICENSE"}
67
requires-python = ">=3.9"
78
keywords = ["vega", "altair", "vegafusion", "arrow"]
89
classifiers = [
@@ -22,9 +23,6 @@ name = "VegaFusion Contributors"
2223
requires = ["maturin>=1.1.0,<2"]
2324
build-backend = "maturin"
2425

25-
[project.license]
26-
text = "BSD-3-Clause"
27-
2826
[project.urls]
2927
Homepage = "https://vegafusion.io"
3028
Repository = "https://github.com/hex-inc/vegafusion"

vegafusion-runtime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ harness = false
66
name = "vegafusion-runtime"
77
license = "BSD-3-Clause"
88
edition = "2021"
9-
version = "2.0.1"
9+
version = "2.0.2"
1010
description = "VegaFusion Runtime"
1111

1212
[features]
@@ -100,12 +100,12 @@ workspace = true
100100
[dependencies.vegafusion-common]
101101
path = "../vegafusion-common"
102102
features = ["json", "sqlparser", "prettyprint", "object_store", "url"]
103-
version = "2.0.1"
103+
version = "2.0.2"
104104

105105
[dependencies.vegafusion-core]
106106
path = "../vegafusion-core"
107107
features = ["sqlparser"]
108-
version = "2.0.1"
108+
version = "2.0.2"
109109

110110
[dependencies.serde]
111111
version = "1.0.137"

vegafusion-server/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ path = "src/main.rs"
55
[package]
66
name = "vegafusion-server"
77
license = "BSD-3-Clause"
8-
version = "2.0.1"
8+
version = "2.0.2"
99
edition = "2021"
1010
description = "VegaFusion Server"
1111
repository = "https://github.com/vega/vegafusion"
@@ -31,16 +31,16 @@ workspace = true
3131

3232
[dependencies.vegafusion-common]
3333
path = "../vegafusion-common"
34-
version = "2.0.1"
34+
version = "2.0.2"
3535

3636
[dependencies.vegafusion-core]
3737
path = "../vegafusion-core"
3838
features = ["tonic_support"]
39-
version = "2.0.1"
39+
version = "2.0.2"
4040

4141
[dependencies.vegafusion-runtime]
4242
path = "../vegafusion-runtime"
43-
version = "2.0.1"
43+
version = "2.0.2"
4444

4545
[dependencies.tokio]
4646
workspace = true

vegafusion-wasm/Cargo.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
[package]
22
name = "vegafusion-wasm"
33
license = "BSD-3-Clause"
4-
version = "2.0.1"
4+
version = "2.0.2"
55
edition = "2021"
66
description = "VegaFusion WASM package for embedding Vega charts in the browser with a connection to a VegaFusion Runtime"
77

8-
[lints.rust]
9-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasm_bindgen_unstable_test_coverage)'] }
10-
118
[lib]
129
crate-type = ["cdylib", "rlib"]
1310

@@ -36,15 +33,15 @@ workspace = true
3633
[dependencies.vegafusion-common]
3734
path = "../vegafusion-common"
3835
features = ["json"]
39-
version = "2.0.1"
36+
version = "2.0.2"
4037

4138
[dependencies.vegafusion-core]
4239
path = "../vegafusion-core"
43-
version = "2.0.1"
40+
version = "2.0.2"
4441

4542
[dependencies.vegafusion-runtime]
4643
path = "../vegafusion-runtime"
47-
version = "2.0.1"
44+
version = "2.0.2"
4845
default-features = false
4946
features = ["http-wasm"]
5047

@@ -74,6 +71,10 @@ features = ["Document", "Element", "HtmlElement", "Node", "Window"]
7471
[dependencies.async-trait]
7572
workspace = true
7673

74+
[lints.rust.unexpected_cfgs]
75+
level = "warn"
76+
check-cfg = ["cfg(wasm_bindgen_unstable_test_coverage)"]
77+
7778
[package.metadata.wasm-pack.profile.release]
7879
wasm-opt = ["-Os"]
7980

vegafusion-wasm/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vegafusion-wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vegafusion-wasm",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"author": "Jon Mease <[email protected]> (https://jonmmease.dev)",
55
"license": "BSD-3-Clause",
66
"description": "Wasm library for interfacing with VegaFusion",

0 commit comments

Comments
 (0)