Skip to content

Commit bc46ca4

Browse files
committed
bump version to 2.0.0
1 parent 0fbacba commit bc46ca4

File tree

11 files changed

+28
-28
lines changed

11 files changed

+28
-28
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

RELEASE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ git switch -c release_$VF_VERSION
1414
Then update all the package version strings to `X.Y.Z` using the `automation/bump_version.py` script
1515

1616
```bash
17-
python automation/bump_version.py $VF_VERSION
17+
pixi run bump-version $VF_VERSION
1818
```
1919

2020
Open a pull request to merge this branch into `main`. This will start the continuous integration jobs on GitHub Actions. These jobs will test VegaFusion and build packages for publication.

vegafusion-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vegafusion-common"
3-
version = "2.0.0-rc1"
3+
version = "2.0.0"
44
edition = "2021"
55
description = "Common components required by multiple VegaFusion crates"
66
license = "BSD-3-Clause"

vegafusion-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "vegafusion-core"
33
license = "BSD-3-Clause"
44
edition = "2021"
5-
version = "2.0.0-rc1"
5+
version = "2.0.0"
66
description = "Core components required by multiple VegaFusion crates, with WASM compatibility"
77

88
[features]
@@ -51,7 +51,7 @@ features = ["preserve_order"]
5151
[dependencies.vegafusion-common]
5252
path = "../vegafusion-common"
5353
features = ["json", "sqlparser"]
54-
version = "2.0.0-rc1"
54+
version = "2.0.0"
5555

5656
[dependencies.datafusion-common]
5757
workspace = true

vegafusion-python/Cargo.toml

+4-4
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.0-rc1"
5+
version = "2.0.0"
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.0-rc1"
50+
version = "2.0.0"
5151

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

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

6161
[dependencies.tokio]
6262
workspace = true

vegafusion-python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "vegafusion"
3-
version = "2.0.0-rc1"
3+
version = "2.0.0"
44
description = "Core tools for using VegaFusion from Python"
55
readme = "README.md"
66
requires-python = ">=3.9"

vegafusion-runtime/Cargo.toml

+3-3
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.0-rc1"
9+
version = "2.0.0"
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.0-rc1"
103+
version = "2.0.0"
104104

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

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

vegafusion-server/Cargo.toml

+4-4
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.0-rc1"
8+
version = "2.0.0"
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.0-rc1"
34+
version = "2.0.0"
3535

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

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

4545
[dependencies.tokio]
4646
workspace = true

vegafusion-wasm/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "vegafusion-wasm"
33
license = "BSD-3-Clause"
4-
version = "2.0.0-rc1"
4+
version = "2.0.0"
55
edition = "2021"
66
description = "VegaFusion WASM package for embedding Vega charts in the browser with a connection to a VegaFusion Runtime"
77

@@ -33,15 +33,15 @@ workspace = true
3333
[dependencies.vegafusion-common]
3434
path = "../vegafusion-common"
3535
features = ["json"]
36-
version = "2.0.0-rc1"
36+
version = "2.0.0"
3737

3838
[dependencies.vegafusion-core]
3939
path = "../vegafusion-core"
40-
version = "2.0.0-rc1"
40+
version = "2.0.0"
4141

4242
[dependencies.vegafusion-runtime]
4343
path = "../vegafusion-runtime"
44-
version = "2.0.0-rc1"
44+
version = "2.0.0"
4545
default-features = false
4646
features = ["http-wasm"]
4747

vegafusion-wasm/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vegafusion-wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vegafusion-wasm",
3-
"version": "2.0.0-rc1",
3+
"version": "2.0.0",
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)