Skip to content

Commit f86bb1d

Browse files
authored
chore: prepare 0.0.10 release (#64)
1 parent 5b4ff3a commit f86bb1d

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
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.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ older version. Refer to the table below for the version compatibility matrix.
2727

2828
| Substrait... | ... is supported by validator ... |
2929
| -------------- | ------------------------------------ |
30-
| 0.19.x | current version |
30+
| 0.19.x | 0.0.10 |
3131
| 0.18.x | 0.0.9 |
3232
| 0.9.x - 0.17.x | 0.0.8 |
3333
| 0.7.x - 0.8.x | 0.0.7 |

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.9"
3+
version = "0.0.10"
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.9" }
15+
substrait-validator = { path = "../rs", version = "0.0.10" }
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.9
1+
0.0.10

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.9"
7+
version = "0.0.10"
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.9"
3+
version = "0.0.10"
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.9" }
32+
substrait-validator = { path = "../rs", version = "0.0.10" }
3333
pyo3 = { version = "0.17.3", 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.9"
8+
version = "0.0.10"
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.9"
7+
version = "0.0.10"
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.9" }
27+
substrait-validator-derive = { path = "../derive", version = "0.0.10" }
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.9"
9+
substrait-validator = "0.0.10"
1010
```
1111

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

2121
```
2222
[dependencies]
23-
substrait-validator = { version = "0.0.9", features = ["curl"] }
23+
substrait-validator = { version = "0.0.10", 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.9"
3+
version = "0.0.10"
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.9" }
17+
substrait-validator = { path = "../rs", version = "0.0.10" }
1818
serde = { version = "1.0", features = ["derive"] }
1919
serde_json = "1.0"
2020
walkdir = "2"

0 commit comments

Comments
 (0)