Skip to content

Commit

Permalink
Bump version to 0.11.0-rc11 (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease authored Dec 31, 2022
1 parent 0cef906 commit 020dc18
Show file tree
Hide file tree
Showing 18 changed files with 36 additions and 34 deletions.
10 changes: 5 additions & 5 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 javascript/vegafusion-chart-editor/package-lock.json

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

2 changes: 1 addition & 1 deletion javascript/vegafusion-chart-editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-wasm-app",
"version": "0.11.0-rc10",
"version": "0.11.0-rc11",
"description": "create an app to consume rust-generated wasm packages",
"main": "index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion javascript/vegafusion-embed/package-lock.json

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

2 changes: 1 addition & 1 deletion javascript/vegafusion-embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vegafusion-embed",
"version": "0.11.0-rc10",
"version": "0.11.0-rc11",
"description": "Library to embed vegafusion visualizations",
"keywords": [
"vega",
Expand Down
2 changes: 1 addition & 1 deletion python/vegafusion-jupyter/package-lock.json

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

2 changes: 1 addition & 1 deletion python/vegafusion-jupyter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vegafusion-jupyter",
"version": "0.11.0-rc10",
"version": "0.11.0-rc11",
"description": "Altair Jupyter Widget library that relies on VegaFusion for serverside calculations",
"keywords": [
"jupyter",
Expand Down
2 changes: 1 addition & 1 deletion python/vegafusion-jupyter/vegafusion_jupyter/_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Information about the frontend package of the widgets.
"""
module_name = "vegafusion-jupyter"
module_version = "^0.11.0-rc10"
module_version = "^0.11.0-rc11"
2 changes: 1 addition & 1 deletion python/vegafusion-jupyter/vegafusion_jupyter/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.11.0-rc10'
__version__ = '0.11.0-rc11'
9 changes: 5 additions & 4 deletions python/vegafusion/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ universal = 0
[metadata]
name = vegafusion
description = Core tools for using VegaFusion from Python
version = 0.11.0-rc10
version = 0.11.0-rc11
long_description = file: README.md
long_description_content_type = text/markdown
keywords = vega, altair, vegafusion, arrow
Expand Down Expand Up @@ -33,6 +33,7 @@ install_requires =
psutil

[options.extras_require]
embed =
vegafusion-python-embed
vl-convert-python
embed =
vegafusion-python-embed
vl-convert-python

2 changes: 1 addition & 1 deletion python/vegafusion/vegafusion/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.11.0-rc10'
__version__ = '0.11.0-rc11'
12 changes: 5 additions & 7 deletions vegafusion-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "vegafusion-core"
license = "AGPL-3.0-or-later"
edition = "2021"
version = "0.11.0-rc10"
version = "0.11.0-rc11"

[features]
tonic_support = [ "tonic", "tonic-build",]
Expand All @@ -20,7 +20,7 @@ ordered-float = "^2.10.0"
petgraph = "0.6.0"
deterministic-hash = "1.0.1"
chrono = "0.4.23"
num-complex = "0.4.2" # Needed by arrow?
num-complex = "0.4.2"

[dependencies.sqlgen]
git = "https://github.com/vegafusion/sqlgen-rs.git"
Expand All @@ -34,11 +34,9 @@ features = [ "preserve_order",]
[dependencies.arrow]
version = "28.0.0"
default_features = false
features = [ "ipc", "json"]
features = [ "ipc", "json",]

[dependencies.datafusion-common]
# Use custom branch that is version 15.0.0 with median
# fix cherry picked
git = "https://github.com/jonmmease/arrow-datafusion.git"
rev = "45214e5ff61c5603d696f5a2bc8c297e4bd6b7b6"

Expand All @@ -61,5 +59,5 @@ version = "0.11.4"
version = "0.8.4"
optional = true

[target.'cfg(target_family = "unix")'.build-dependencies]
protobuf-src = "1.1.0"
[target."cfg(target_family = \"unix\")".build-dependencies]
protobuf-src = "1.1.0"
2 changes: 1 addition & 1 deletion vegafusion-python-embed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "vegafusion-python-embed"
license = "AGPL-3.0-or-later"
edition = "2021"
version = "0.11.0-rc10"
version = "0.11.0-rc11"

[lib]
name = "vegafusion_embed"
Expand Down
7 changes: 5 additions & 2 deletions vegafusion-rt-datafusion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ harness = false
name = "vegafusion-rt-datafusion"
license = "AGPL-3.0-or-later"
edition = "2021"
version = "0.11.0-rc10"
version = "0.11.0-rc11"

[features]
pyarrow = [ "vegafusion-core/pyarrow",]
Expand Down Expand Up @@ -34,7 +34,6 @@ deterministic-hash = "1.0.1"
log = "0.4.17"
env_logger = "0.9.0"
ordered-float = "3.4.0"
uuid = { version = "^1.2", features = ["v4"] }
lock_api = "^0.4.8"
reqwest-retry = "0.2.1"
reqwest-middleware = "0.2.0"
Expand All @@ -49,6 +48,10 @@ dssim = "3.1.0"
rgb = "0.8.32"
lodepng = "3.6.1"

[dependencies.uuid]
version = "^1.2"
features = [ "v4",]

[dependencies.sqlgen]
git = "https://github.com/vegafusion/sqlgen-rs.git"
rev = "e5ac9609dfffbf98af1fd8f2bc8a07216451bb51"
Expand Down
6 changes: 3 additions & 3 deletions vegafusion-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ path = "src/main.rs"

[package]
name = "vegafusion-server"
version = "0.11.0-rc10"
version = "0.11.0-rc11"
edition = "2021"
license = "AGPL-3.0-or-later"

Expand Down Expand Up @@ -42,5 +42,5 @@ features = [ "tls",]
version = "3.2.22"
features = [ "derive",]

[target.'cfg(target_family = "unix")'.build-dependencies]
protobuf-src = "1.1.0"
[target."cfg(target_family = \"unix\")".build-dependencies]
protobuf-src = "1.1.0"
2 changes: 1 addition & 1 deletion vegafusion-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vegafusion-wasm"
version = "0.11.0-rc10"
version = "0.11.0-rc11"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion vegafusion-wasm/package-lock.json

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

2 changes: 1 addition & 1 deletion vegafusion-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vegafusion-wasm",
"version": "0.11.0-rc10",
"version": "0.11.0-rc11",
"author": {
"name": "VegaFusion Technologies LLC",
"email": "[email protected]",
Expand Down

0 comments on commit 020dc18

Please sign in to comment.