Skip to content

Commit 9e7de90

Browse files
authored
chore: release 0.1.2 (#359)
1 parent c36d3f4 commit 9e7de90

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

Cargo.lock

Lines changed: 6 additions & 6 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.57.x | 0.1.0 - 0.1.1 (current version) |
30+
| 0.57.x | 0.1.0 - 0.1.2 (current version) |
3131
| 0.21.x - 0.56.x | try 0.0.11 or 0.1.x, but your mileage may vary |
3232
| 0.20.x | 0.0.11 |
3333
| 0.19.x | 0.0.10 |

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.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
license = "Apache-2.0"
66

@@ -16,7 +16,7 @@ protoc = ["substrait-validator/protoc"]
1616
cbindgen = "0.27.0"
1717

1818
[dependencies]
19-
substrait-validator = { path = "../rs", version = "0.1.1" }
19+
substrait-validator = { path = "../rs", version = "0.1.2" }
2020
libc = "0.2"
2121
thiserror = "2.0"
2222
once_cell = "1.19"

ci/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.1
1+
0.1.2

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-validator"
66
readme = "README.md"
7-
version = "0.1.1"
7+
version = "0.1.2"
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.1.1"
3+
version = "0.1.2"
44
edition = "2018"
55
license = "Apache-2.0"
66
include = [
@@ -33,7 +33,7 @@ name = "substrait_validator"
3333
doc = false
3434

3535
[dependencies]
36-
substrait-validator = { path = "../rs", version = "0.1.1" }
36+
substrait-validator = { path = "../rs", version = "0.1.2" }
3737
pyo3 = { version = "0.22.5", features = ["extension-module"] }
3838

3939
[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.1.1"
8+
version = "0.1.2"
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-validator"
66
readme = "README.md"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
edition = "2021"
99
license = "Apache-2.0"
1010
include = ["src", "build.rs", "README.md"]
@@ -29,7 +29,7 @@ prost-types = "0.13.4"
2929

3030
# Prost doesn't generate any introspection stuff, so we hack that stuff in with
3131
# our own procedural macros.
32-
substrait-validator-derive = { path = "../derive", version = "0.1.1" }
32+
substrait-validator-derive = { path = "../derive", version = "0.1.2" }
3333

3434
# Google/protobuf has a funny idea about case conventions (it converts them all
3535
# 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.1.1"
9+
substrait-validator = "0.1.2"
1010
```
1111

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

2121
```
2222
[dependencies]
23-
substrait-validator = { version = "0.1.1", features = ["curl"] }
23+
substrait-validator = { version = "0.1.2", 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.1.1"
3+
version = "0.1.2"
44
edition = "2018"
55
license = "Apache-2.0"
66
default-run = "runner"
@@ -18,7 +18,7 @@ path = "src/find_protoc.rs"
1818
protoc = ["dep:protobuf-src", "substrait-validator/protoc"]
1919

2020
[dependencies]
21-
substrait-validator = { path = "../rs", version = "0.1.1" }
21+
substrait-validator = { path = "../rs", version = "0.1.2" }
2222
serde = { version = "1.0", features = ["derive"] }
2323
serde_json = "1.0"
2424
walkdir = "2"

0 commit comments

Comments
 (0)