Skip to content

Commit b2c0297

Browse files
authored
chore: release 0.1.0 (#295)
* chore(version): bumped version number with 'python ci/version.py set 0.1.0' * chore(docs): update repository link to refer to this repo * chore(docs): update substrait compatibility matrix
1 parent 7ba1eb8 commit b2c0297

11 files changed

+34
-32
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: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,18 @@ Substrait versions. Whenever Substrait makes a breaking change that affects
2525
validation, the validator will be updated accordingly and drop support for the
2626
older version. Refer to the table below for the version compatibility matrix.
2727

28-
| Substrait... | ... is supported by validator ... |
29-
| -------------- | ------------------------------------ |
30-
| 0.20.x | 0.0.11 (current version) |
31-
| 0.19.x | 0.0.10 |
32-
| 0.18.x | 0.0.9 |
33-
| 0.9.x - 0.17.x | 0.0.8 |
34-
| 0.7.x - 0.8.x | 0.0.7 |
35-
| 0.5.x - 0.6.x | 0.0.6 |
36-
| 0.3.x - 0.4.x | 0.0.4 - 0.0.5 |
37-
| older | try 0.0.1, but your mileage may vary |
28+
| Substrait... | ... is supported by validator ... |
29+
| --------------- | ---------------------------------------------- |
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 |
32+
| 0.20.x | 0.0.11 |
33+
| 0.19.x | 0.0.10 |
34+
| 0.18.x | 0.0.9 |
35+
| 0.9.x - 0.17.x | 0.0.8 |
36+
| 0.7.x - 0.8.x | 0.0.7 |
37+
| 0.5.x - 0.6.x | 0.0.6 |
38+
| 0.3.x - 0.4.x | 0.0.4 - 0.0.5 |
39+
| older | try 0.0.1, but your mileage may vary |
3840

3941
As Substrait and the validator stabilize and breaking changes become less
4042
frequent, the intention is to support more versions within a single validator

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

ci/version-diff-template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ index 1cf1f7e..482c127 100644
2525
+++ b/derive/Cargo.toml
2626
@@ -4,7 +4,7 @@ description = "Procedural macros for substrait-validator"
2727
homepage = "https://substrait.io/"
28-
repository = "https://github.com/substrait-io/substrait"
28+
repository = "https://github.com/substrait-io/substrait-validator"
2929
readme = "README.md"
3030
-version = "{frm}"
3131
+version = "{to}"
@@ -72,7 +72,7 @@ index 4144f94..791db63 100644
7272
+++ b/rs/Cargo.toml
7373
@@ -4,7 +4,7 @@ description = "Substrait validator"
7474
homepage = "https://substrait.io/"
75-
repository = "https://github.com/substrait-io/substrait"
75+
repository = "https://github.com/substrait-io/substrait-validator"
7676
readme = "README.md"
7777
-version = "{frm}"
7878
+version = "{to}"

derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name = "substrait-validator-derive"
33
description = "Procedural macros for substrait-validator"
44
homepage = "https://substrait.io/"
5-
repository = "https://github.com/substrait-io/substrait"
5+
repository = "https://github.com/substrait-io/substrait-validator"
66
readme = "README.md"
7-
version = "0.0.11"
7+
version = "0.1.0"
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.11"
3+
version = "0.1.0"
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.11" }
32+
substrait-validator = { path = "../rs", version = "0.1.0" }
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.0.11"
8+
version = "0.1.0"
99
description = "Validator for Substrait query plans"
1010
readme = "README.md"
1111
license = { file = "LICENSE" }

rs/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name = "substrait-validator"
33
description = "Substrait validator"
44
homepage = "https://substrait.io/"
5-
repository = "https://github.com/substrait-io/substrait"
5+
repository = "https://github.com/substrait-io/substrait-validator"
66
readme = "README.md"
7-
version = "0.0.11"
7+
version = "0.1.0"
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.0.11" }
27+
substrait-validator-derive = { path = "../derive", version = "0.1.0" }
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.11"
9+
substrait-validator = "0.1.0"
1010
```
1111

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

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

0 commit comments

Comments
 (0)