From 121471c1671f533b2c91dc1b3e540290d0522eef Mon Sep 17 00:00:00 2001 From: Jeroen van Straten Date: Tue, 26 Jul 2022 12:46:23 +0200 Subject: [PATCH] chore: increment version to 0.0.7 (#27) --- Cargo.lock | 10 +++++----- README.md | 4 ++-- 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, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a1764b91..25b4088f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1083,7 +1083,7 @@ dependencies = [ [[package]] name = "substrait-validator" -version = "0.0.6" +version = "0.0.7" dependencies = [ "base64", "chrono", @@ -1114,7 +1114,7 @@ dependencies = [ [[package]] name = "substrait-validator-c" -version = "0.0.6" +version = "0.0.7" dependencies = [ "cbindgen", "libc", @@ -1125,7 +1125,7 @@ dependencies = [ [[package]] name = "substrait-validator-derive" -version = "0.0.6" +version = "0.0.7" dependencies = [ "heck 0.4.0", "quote", @@ -1134,7 +1134,7 @@ dependencies = [ [[package]] name = "substrait-validator-py" -version = "0.0.6" +version = "0.0.7" dependencies = [ "dunce", "prost-build", @@ -1170,7 +1170,7 @@ dependencies = [ [[package]] name = "test-runner" -version = "0.0.6" +version = "0.0.7" dependencies = [ "glob", "prost-build", diff --git a/README.md b/README.md index 67e35861..22d4d43b 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ older version. Refer to the table below for the version compatibility matrix. | Substrait... | ... is supported by validator ... | | ------------- | ------------------------------------ | -| 0.7.x and up | not yet supported | -| 0.5.x - 0.6.x | current version | +| 0.7.x - 0.8.x | current version | +| 0.5.x - 0.6.x | 0.0.6 | | 0.3.x - 0.4.x | 0.0.4 - 0.0.5 | | older | try 0.0.1, but your mileage may vary | diff --git a/c/Cargo.toml b/c/Cargo.toml index 5579e56d..03166f95 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-c" -version = "0.0.6" +version = "0.0.7" edition = "2021" license = "Apache-2.0" @@ -12,7 +12,7 @@ doc = false cbindgen = "0.20.0" [dependencies] -substrait-validator = { path = "../rs", version = "0.0.6" } +substrait-validator = { path = "../rs", version = "0.0.7" } libc = "0.2" thiserror = "1.0" once_cell = "1.9" diff --git a/ci/version b/ci/version index 99d85ecd..5c4511c3 100644 --- a/ci/version +++ b/ci/version @@ -1 +1 @@ -0.0.6 \ No newline at end of file +0.0.7 \ No newline at end of file diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 3fe33f4f..ac273186 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.6" +version = "0.0.7" edition = "2021" license = "Apache-2.0" diff --git a/py/Cargo.toml b/py/Cargo.toml index 534d9cb0..5d2e0b50 100644 --- a/py/Cargo.toml +++ b/py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-py" -version = "0.0.6" +version = "0.0.7" edition = "2018" license = "Apache-2.0" include = [ @@ -29,7 +29,7 @@ name = "substrait_validator" doc = false [dependencies] -substrait-validator = { path = "../rs", version = "0.0.6" } +substrait-validator = { path = "../rs", version = "0.0.7" } pyo3 = { version = "0.15.1", features = ["extension-module"] } [build-dependencies] diff --git a/py/pyproject.toml b/py/pyproject.toml index 5aaa18b3..a10e9605 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -5,7 +5,7 @@ backend-path = ["."] [project] name = "substrait-validator" -version = "0.0.6" +version = "0.0.7" description = "Validator for Substrait query plans" readme = "README.md" license = {file = "LICENSE"} diff --git a/rs/Cargo.toml b/rs/Cargo.toml index 0bcb4f8d..85c78079 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.6" +version = "0.0.7" 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.6" } +substrait-validator-derive = { path = "../derive", version = "0.0.7" } # 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 3794be29..41668f0c 100644 --- a/rs/README.md +++ b/rs/README.md @@ -6,7 +6,7 @@ plans. ``` [dependencies] -substrait-validator = "0.0.6" +substrait-validator = "0.0.7" ``` YAML file resolution @@ -20,7 +20,7 @@ dependency: ``` [dependencies] -substrait-validator = { version = "0.0.6", features = ["curl"] } +substrait-validator = { version = "0.0.7", features = ["curl"] } ``` This adds the `substrait_validator::Config::add_curl_yaml_uri_resolver()` diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 89806dcf..d9201fd1 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-runner" -version = "0.0.6" +version = "0.0.7" 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.6" } +substrait-validator = { path = "../rs", version = "0.0.7" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" walkdir = "2"