From f86bb1de91d84ef697d0edc50a2fe6a685965b56 Mon Sep 17 00:00:00 2001 From: Matthijs Brobbel Date: Mon, 21 Nov 2022 14:41:29 +0100 Subject: [PATCH] chore: prepare 0.0.10 release (#64) --- Cargo.lock | 10 +++++----- README.md | 2 +- c/Cargo.toml | 4 ++-- ci/version | 2 +- derive/Cargo.toml | 2 +- py/Cargo.toml | 4 ++-- py/pyproject.toml | 2 +- rs/Cargo.toml | 4 ++-- rs/README.md | 4 ++-- tests/Cargo.toml | 4 ++-- 10 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c4b5f074..c736fd5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1104,7 +1104,7 @@ dependencies = [ [[package]] name = "substrait-validator" -version = "0.0.9" +version = "0.0.10" dependencies = [ "antlr-rust", "base64", @@ -1137,7 +1137,7 @@ dependencies = [ [[package]] name = "substrait-validator-c" -version = "0.0.9" +version = "0.0.10" dependencies = [ "cbindgen", "libc", @@ -1148,7 +1148,7 @@ dependencies = [ [[package]] name = "substrait-validator-derive" -version = "0.0.9" +version = "0.0.10" dependencies = [ "heck 0.4.0", "quote", @@ -1157,7 +1157,7 @@ dependencies = [ [[package]] name = "substrait-validator-py" -version = "0.0.9" +version = "0.0.10" dependencies = [ "dunce", "prost-build", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "test-runner" -version = "0.0.9" +version = "0.0.10" dependencies = [ "glob", "prost-build", diff --git a/README.md b/README.md index 970b9d4a..26446e72 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ older version. Refer to the table below for the version compatibility matrix. | Substrait... | ... is supported by validator ... | | -------------- | ------------------------------------ | -| 0.19.x | current version | +| 0.19.x | 0.0.10 | | 0.18.x | 0.0.9 | | 0.9.x - 0.17.x | 0.0.8 | | 0.7.x - 0.8.x | 0.0.7 | diff --git a/c/Cargo.toml b/c/Cargo.toml index 15b47233..e5a7da2a 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-c" -version = "0.0.9" +version = "0.0.10" edition = "2021" license = "Apache-2.0" @@ -12,7 +12,7 @@ doc = false cbindgen = "0.20.0" [dependencies] -substrait-validator = { path = "../rs", version = "0.0.9" } +substrait-validator = { path = "../rs", version = "0.0.10" } libc = "0.2" thiserror = "1.0" once_cell = "1.9" diff --git a/ci/version b/ci/version index 429d94ae..b0a12275 100644 --- a/ci/version +++ b/ci/version @@ -1 +1 @@ -0.0.9 \ No newline at end of file +0.0.10 \ No newline at end of file diff --git a/derive/Cargo.toml b/derive/Cargo.toml index fc17b5db..3370944f 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -4,7 +4,7 @@ description = "Procedural macros for substrait-validator" homepage = "https://substrait.io/" repository = "https://github.com/substrait-io/substrait" readme = "README.md" -version = "0.0.9" +version = "0.0.10" edition = "2021" license = "Apache-2.0" diff --git a/py/Cargo.toml b/py/Cargo.toml index 8589adec..2845c839 100644 --- a/py/Cargo.toml +++ b/py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-py" -version = "0.0.9" +version = "0.0.10" edition = "2018" license = "Apache-2.0" include = [ @@ -29,7 +29,7 @@ name = "substrait_validator" doc = false [dependencies] -substrait-validator = { path = "../rs", version = "0.0.9" } +substrait-validator = { path = "../rs", version = "0.0.10" } pyo3 = { version = "0.17.3", features = ["extension-module"] } [build-dependencies] diff --git a/py/pyproject.toml b/py/pyproject.toml index d1c1e35a..c201f833 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -5,7 +5,7 @@ backend-path = ["."] [project] name = "substrait-validator" -version = "0.0.9" +version = "0.0.10" description = "Validator for Substrait query plans" readme = "README.md" license = { file = "LICENSE" } diff --git a/rs/Cargo.toml b/rs/Cargo.toml index b2753132..3dd841cd 100644 --- a/rs/Cargo.toml +++ b/rs/Cargo.toml @@ -4,7 +4,7 @@ description = "Substrait validator" homepage = "https://substrait.io/" repository = "https://github.com/substrait-io/substrait" readme = "README.md" -version = "0.0.9" +version = "0.0.10" edition = "2021" license = "Apache-2.0" include = ["src", "build.rs", "README.md"] @@ -24,7 +24,7 @@ prost-types = "0.10" # Prost doesn't generate any introspection stuff, so we hack that stuff in with # our own procedural macros. -substrait-validator-derive = { path = "../derive", version = "0.0.9" } +substrait-validator-derive = { path = "../derive", version = "0.0.10" } # Google/protobuf has a funny idea about case conventions (it converts them all # over the place) and prost remaps to Rust's conventions to boot. So, to diff --git a/rs/README.md b/rs/README.md index 9c275aa9..91ade181 100644 --- a/rs/README.md +++ b/rs/README.md @@ -6,7 +6,7 @@ plans. ``` [dependencies] -substrait-validator = "0.0.9" +substrait-validator = "0.0.10" ``` YAML file resolution @@ -20,7 +20,7 @@ dependency: ``` [dependencies] -substrait-validator = { version = "0.0.9", features = ["curl"] } +substrait-validator = { version = "0.0.10", features = ["curl"] } ``` This adds the `substrait_validator::Config::add_curl_yaml_uri_resolver()` diff --git a/tests/Cargo.toml b/tests/Cargo.toml index a42e3cef..d4fff455 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-runner" -version = "0.0.9" +version = "0.0.10" edition = "2018" license = "Apache-2.0" default-run = "runner" @@ -14,7 +14,7 @@ name = "find_protoc" path = "src/find_protoc.rs" [dependencies] -substrait-validator = { path = "../rs", version = "0.0.9" } +substrait-validator = { path = "../rs", version = "0.0.10" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" walkdir = "2"