diff --git a/Cargo.lock b/Cargo.lock index 0590a4b8..884cc83b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1134,7 +1134,7 @@ dependencies = [ [[package]] name = "substrait-validator" -version = "0.0.8" +version = "0.0.9" dependencies = [ "antlr-rust", "base64", @@ -1167,7 +1167,7 @@ dependencies = [ [[package]] name = "substrait-validator-c" -version = "0.0.8" +version = "0.0.9" dependencies = [ "cbindgen", "libc", @@ -1178,7 +1178,7 @@ dependencies = [ [[package]] name = "substrait-validator-derive" -version = "0.0.8" +version = "0.0.9" dependencies = [ "heck 0.4.0", "quote", @@ -1187,7 +1187,7 @@ dependencies = [ [[package]] name = "substrait-validator-py" -version = "0.0.8" +version = "0.0.9" dependencies = [ "dunce", "prost-build", @@ -1223,7 +1223,7 @@ dependencies = [ [[package]] name = "test-runner" -version = "0.0.8" +version = "0.0.9" dependencies = [ "glob", "prost-build", diff --git a/c/Cargo.toml b/c/Cargo.toml index 01c44475..15b47233 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-c" -version = "0.0.8" +version = "0.0.9" edition = "2021" license = "Apache-2.0" @@ -12,7 +12,7 @@ doc = false cbindgen = "0.20.0" [dependencies] -substrait-validator = { path = "../rs", version = "0.0.8" } +substrait-validator = { path = "../rs", version = "0.0.9" } libc = "0.2" thiserror = "1.0" once_cell = "1.9" diff --git a/ci/version b/ci/version index 7d6b3eb3..429d94ae 100644 --- a/ci/version +++ b/ci/version @@ -1 +1 @@ -0.0.8 \ No newline at end of file +0.0.9 \ No newline at end of file diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 77ba4a2f..fc17b5db 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.8" +version = "0.0.9" edition = "2021" license = "Apache-2.0" diff --git a/py/Cargo.toml b/py/Cargo.toml index d3c0554e..cab18b99 100644 --- a/py/Cargo.toml +++ b/py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-py" -version = "0.0.8" +version = "0.0.9" edition = "2018" license = "Apache-2.0" include = [ @@ -29,7 +29,7 @@ name = "substrait_validator" doc = false [dependencies] -substrait-validator = { path = "../rs", version = "0.0.8" } +substrait-validator = { path = "../rs", version = "0.0.9" } pyo3 = { version = "0.15.1", features = ["extension-module"] } [build-dependencies] diff --git a/py/pyproject.toml b/py/pyproject.toml index cbdcafb9..2d982295 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -5,7 +5,7 @@ backend-path = ["."] [project] name = "substrait-validator" -version = "0.0.8" +version = "0.0.9" description = "Validator for Substrait query plans" readme = "README.md" license = {file = "LICENSE"} diff --git a/rs/Cargo.toml b/rs/Cargo.toml index 588e2621..b2753132 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.8" +version = "0.0.9" 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.8" } +substrait-validator-derive = { path = "../derive", version = "0.0.9" } # 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 4b6d00d1..9c275aa9 100644 --- a/rs/README.md +++ b/rs/README.md @@ -6,7 +6,7 @@ plans. ``` [dependencies] -substrait-validator = "0.0.8" +substrait-validator = "0.0.9" ``` YAML file resolution @@ -20,7 +20,7 @@ dependency: ``` [dependencies] -substrait-validator = { version = "0.0.8", features = ["curl"] } +substrait-validator = { version = "0.0.9", features = ["curl"] } ``` This adds the `substrait_validator::Config::add_curl_yaml_uri_resolver()` diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 9581e520..a42e3cef 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-runner" -version = "0.0.8" +version = "0.0.9" 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.8" } +substrait-validator = { path = "../rs", version = "0.0.9" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" walkdir = "2"