Skip to content

Commit 48f5941

Browse files
authored
chore: increment to version 0.0.6 (#25)
1 parent fb1df27 commit 48f5941

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

c/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrait-validator-c"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
license = "Apache-2.0"
66

@@ -12,7 +12,7 @@ doc = false
1212
cbindgen = "0.20.0"
1313

1414
[dependencies]
15-
substrait-validator = { path = "../rs", version = "0.0.5" }
15+
substrait-validator = { path = "../rs", version = "0.0.6" }
1616
libc = "0.2"
1717
thiserror = "1.0"
1818
once_cell = "1.9"

ci/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.5
1+
0.0.6

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Procedural macros for substrait-validator"
44
homepage = "https://substrait.io/"
55
repository = "https://github.com/substrait-io/substrait"
66
readme = "README.md"
7-
version = "0.0.5"
7+
version = "0.0.6"
88
edition = "2021"
99
license = "Apache-2.0"
1010

py/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrait-validator-py"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
license = "Apache-2.0"
66
include = [
@@ -29,7 +29,7 @@ name = "substrait_validator"
2929
doc = false
3030

3131
[dependencies]
32-
substrait-validator = { path = "../rs", version = "0.0.5" }
32+
substrait-validator = { path = "../rs", version = "0.0.6" }
3333
pyo3 = { version = "0.15.1", features = ["extension-module"] }
3434

3535
[build-dependencies]

py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ backend-path = ["."]
55

66
[project]
77
name = "substrait-validator"
8-
version = "0.0.5"
8+
version = "0.0.6"
99
description = "Validator for Substrait query plans"
1010
readme = "README.md"
1111
license = {file = "LICENSE"}

rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Substrait validator"
44
homepage = "https://substrait.io/"
55
repository = "https://github.com/substrait-io/substrait"
66
readme = "README.md"
7-
version = "0.0.5"
7+
version = "0.0.6"
88
edition = "2021"
99
license = "Apache-2.0"
1010
include = ["src", "build.rs", "README.md"]
@@ -24,7 +24,7 @@ prost-types = "0.10"
2424

2525
# Prost doesn't generate any introspection stuff, so we hack that stuff in with
2626
# our own procedural macros.
27-
substrait-validator-derive = { path = "../derive", version = "0.0.5" }
27+
substrait-validator-derive = { path = "../derive", version = "0.0.6" }
2828

2929
# Google/protobuf has a funny idea about case conventions (it converts them all
3030
# over the place) and prost remaps to Rust's conventions to boot. So, to

rs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plans.
66

77
```
88
[dependencies]
9-
substrait-validator = "0.0.5"
9+
substrait-validator = "0.0.6"
1010
```
1111

1212
YAML file resolution
@@ -20,7 +20,7 @@ dependency:
2020

2121
```
2222
[dependencies]
23-
substrait-validator = { version = "0.0.5", features = ["curl"] }
23+
substrait-validator = { version = "0.0.6", features = ["curl"] }
2424
```
2525

2626
This adds the `substrait_validator::Config::add_curl_yaml_uri_resolver()`

tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-runner"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
license = "Apache-2.0"
66
default-run = "runner"
@@ -14,7 +14,7 @@ name = "find_protoc"
1414
path = "src/find_protoc.rs"
1515

1616
[dependencies]
17-
substrait-validator = { path = "../rs", version = "0.0.5" }
17+
substrait-validator = { path = "../rs", version = "0.0.6" }
1818
serde = { version = "1.0", features = ["derive"] }
1919
serde_json = "1.0"
2020
walkdir = "2"

0 commit comments

Comments
 (0)