diff --git a/Cargo.lock b/Cargo.lock index af5acb55..a1764b91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1083,7 +1083,7 @@ dependencies = [ [[package]] name = "substrait-validator" -version = "0.0.5" +version = "0.0.6" dependencies = [ "base64", "chrono", @@ -1114,7 +1114,7 @@ dependencies = [ [[package]] name = "substrait-validator-c" -version = "0.0.5" +version = "0.0.6" dependencies = [ "cbindgen", "libc", @@ -1125,7 +1125,7 @@ dependencies = [ [[package]] name = "substrait-validator-derive" -version = "0.0.5" +version = "0.0.6" dependencies = [ "heck 0.4.0", "quote", @@ -1134,7 +1134,7 @@ dependencies = [ [[package]] name = "substrait-validator-py" -version = "0.0.5" +version = "0.0.6" dependencies = [ "dunce", "prost-build", @@ -1170,7 +1170,7 @@ dependencies = [ [[package]] name = "test-runner" -version = "0.0.5" +version = "0.0.6" dependencies = [ "glob", "prost-build", diff --git a/c/Cargo.toml b/c/Cargo.toml index 4c514b1b..5579e56d 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-c" -version = "0.0.5" +version = "0.0.6" edition = "2021" license = "Apache-2.0" @@ -12,7 +12,7 @@ doc = false cbindgen = "0.20.0" [dependencies] -substrait-validator = { path = "../rs", version = "0.0.5" } +substrait-validator = { path = "../rs", version = "0.0.6" } libc = "0.2" thiserror = "1.0" once_cell = "1.9" diff --git a/ci/version b/ci/version index fa3de586..99d85ecd 100644 --- a/ci/version +++ b/ci/version @@ -1 +1 @@ -0.0.5 \ No newline at end of file +0.0.6 \ No newline at end of file diff --git a/derive/Cargo.toml b/derive/Cargo.toml index f7224e59..3fe33f4f 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.5" +version = "0.0.6" edition = "2021" license = "Apache-2.0" diff --git a/py/Cargo.toml b/py/Cargo.toml index eec5ff2a..534d9cb0 100644 --- a/py/Cargo.toml +++ b/py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrait-validator-py" -version = "0.0.5" +version = "0.0.6" edition = "2018" license = "Apache-2.0" include = [ @@ -29,7 +29,7 @@ name = "substrait_validator" doc = false [dependencies] -substrait-validator = { path = "../rs", version = "0.0.5" } +substrait-validator = { path = "../rs", version = "0.0.6" } pyo3 = { version = "0.15.1", features = ["extension-module"] } [build-dependencies] diff --git a/py/pyproject.toml b/py/pyproject.toml index f2ee1dbc..5aaa18b3 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -5,7 +5,7 @@ backend-path = ["."] [project] name = "substrait-validator" -version = "0.0.5" +version = "0.0.6" description = "Validator for Substrait query plans" readme = "README.md" license = {file = "LICENSE"} diff --git a/rs/Cargo.toml b/rs/Cargo.toml index 79ee9965..0bcb4f8d 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.5" +version = "0.0.6" 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.5" } +substrait-validator-derive = { path = "../derive", version = "0.0.6" } # 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 294dba53..3794be29 100644 --- a/rs/README.md +++ b/rs/README.md @@ -6,7 +6,7 @@ plans. ``` [dependencies] -substrait-validator = "0.0.5" +substrait-validator = "0.0.6" ``` YAML file resolution @@ -20,7 +20,7 @@ dependency: ``` [dependencies] -substrait-validator = { version = "0.0.5", features = ["curl"] } +substrait-validator = { version = "0.0.6", features = ["curl"] } ``` This adds the `substrait_validator::Config::add_curl_yaml_uri_resolver()` diff --git a/tests/Cargo.toml b/tests/Cargo.toml index d872e036..89806dcf 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-runner" -version = "0.0.5" +version = "0.0.6" 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.5" } +substrait-validator = { path = "../rs", version = "0.0.6" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" walkdir = "2"