Skip to content

Commit fd3b45d

Browse files
authored
chore(version): Release 0.1.1 (#301)
* chore(version): bumped version number with 'python ci/version.py set 0.1.1' * chore(docs): update substrait compatibility matrix
1 parent 3af14f1 commit fd3b45d

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ 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 (current version) |
31-
| 0.21.x - 0.56.x | try 0.0.11 or 0.1.0, but your mileage may vary |
30+
| 0.57.x | 0.1.0 - 0.1.1 (current version) |
31+
| 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 |
3434
| 0.18.x | 0.0.9 |

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

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

1414
[dependencies]
15-
substrait-validator = { path = "../rs", version = "0.1.0" }
15+
substrait-validator = { path = "../rs", version = "0.1.1" }
1616
libc = "0.2"
1717
thiserror = "1.0"
1818
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.0
1+
0.1.1

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.0"
7+
version = "0.1.1"
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.0"
3+
version = "0.1.1"
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.1.0" }
32+
substrait-validator = { path = "../rs", version = "0.1.1" }
3333
pyo3 = { version = "0.22.5", 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.1.0"
8+
version = "0.1.1"
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.0"
7+
version = "0.1.1"
88
edition = "2021"
99
license = "Apache-2.0"
1010
include = ["src", "build.rs", "README.md"]
@@ -24,7 +24,7 @@ prost-types = "0.13.3"
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.1.0" }
27+
substrait-validator-derive = { path = "../derive", version = "0.1.1" }
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.1.0"
9+
substrait-validator = "0.1.1"
1010
```
1111

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

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

0 commit comments

Comments
 (0)