From 4b98975d1813fa60dc9785f10d0d42327d51776a Mon Sep 17 00:00:00 2001 From: Wendell Smith <wendell.smith@datadoghq.com> Date: Fri, 10 Jan 2025 05:08:07 -0500 Subject: [PATCH] chore: release 0.1.3 (#362) --- 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 1746c260..aa4ebc52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1427,7 +1427,7 @@ dependencies = [ [[package]] name = "substrait-validator" -version = "0.1.2" +version = "0.1.3" dependencies = [ "antlr-rust", "base64", @@ -1461,7 +1461,7 @@ dependencies = [ [[package]] name = "substrait-validator-c" -version = "0.1.2" +version = "0.1.3" dependencies = [ "cbindgen", "libc", @@ -1472,7 +1472,7 @@ dependencies = [ [[package]] name = "substrait-validator-derive" -version = "0.1.2" +version = "0.1.3" dependencies = [ "heck 0.5.0", "quote", @@ -1481,7 +1481,7 @@ dependencies = [ [[package]] name = "substrait-validator-py" -version = "0.1.2" +version = "0.1.3" dependencies = [ "dunce", "prost-build", @@ -1535,7 +1535,7 @@ dependencies = [ [[package]] name = "test-runner" -version = "0.1.2" +version = "0.1.3" dependencies = [ "glob", "prost-build", diff --git a/README.md b/README.md index 477cd0ce..ccb008ef 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.57.x | 0.1.0 - 0.1.2 (current version) | +| 0.57.x | 0.1.0 - 0.1.3 (current version) | | 0.21.x - 0.56.x | try 0.0.11 or 0.1.x, but your mileage may vary | | 0.20.x | 0.0.11 | | 0.19.x | 0.0.10 | diff --git a/c/Cargo.toml b/c/Cargo.toml index 8a62f60c..9652f979 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-c" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "Apache-2.0" @@ -16,7 +16,7 @@ protoc = ["substrait-validator/protoc"] cbindgen = "0.27.0" [dependencies] -substrait-validator = { path = "../rs", version = "0.1.2" } +substrait-validator = { path = "../rs", version = "0.1.3" } libc = "0.2" thiserror = "2.0" once_cell = "1.19" diff --git a/ci/version b/ci/version index 8294c184..7693c96b 100644 --- a/ci/version +++ b/ci/version @@ -1 +1 @@ -0.1.2 \ No newline at end of file +0.1.3 \ No newline at end of file diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 22afaeb9..c33fbda9 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-validator" readme = "README.md" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "Apache-2.0" diff --git a/py/Cargo.toml b/py/Cargo.toml index f5508b3c..f6797de7 100644 --- a/py/Cargo.toml +++ b/py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-py" -version = "0.1.2" +version = "0.1.3" edition = "2018" license = "Apache-2.0" include = [ @@ -33,7 +33,7 @@ name = "substrait_validator" doc = false [dependencies] -substrait-validator = { path = "../rs", version = "0.1.2" } +substrait-validator = { path = "../rs", version = "0.1.3" } pyo3 = { version = "0.22.5", features = ["extension-module"] } [build-dependencies] diff --git a/py/pyproject.toml b/py/pyproject.toml index 701d3b08..28c87333 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -5,7 +5,7 @@ backend-path = ["."] [project] name = "substrait-validator" -version = "0.1.2" +version = "0.1.3" description = "Validator for Substrait query plans" readme = "README.md" license = { file = "LICENSE" } diff --git a/rs/Cargo.toml b/rs/Cargo.toml index 697f89f1..2c8149d9 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-validator" readme = "README.md" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "Apache-2.0" include = ["src", "build.rs", "README.md"] @@ -29,7 +29,7 @@ prost-types = "0.13.4" # 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.1.2" } +substrait-validator-derive = { path = "../derive", version = "0.1.3" } # 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 ce21146e..dd835871 100644 --- a/rs/README.md +++ b/rs/README.md @@ -6,7 +6,7 @@ plans. ``` [dependencies] -substrait-validator = "0.1.2" +substrait-validator = "0.1.3" ``` YAML file resolution @@ -20,7 +20,7 @@ dependency: ``` [dependencies] -substrait-validator = { version = "0.1.2", features = ["curl"] } +substrait-validator = { version = "0.1.3", features = ["curl"] } ``` This adds the `substrait_validator::Config::add_curl_yaml_uri_resolver()` diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 713116d3..7979767c 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-runner" -version = "0.1.2" +version = "0.1.3" edition = "2018" license = "Apache-2.0" default-run = "runner" @@ -18,7 +18,7 @@ path = "src/find_protoc.rs" protoc = ["dep:protobuf-src", "substrait-validator/protoc"] [dependencies] -substrait-validator = { path = "../rs", version = "0.1.2" } +substrait-validator = { path = "../rs", version = "0.1.3" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" walkdir = "2"