Skip to content

Commit

Permalink
chore: release 0.1.2 (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
wackywendell authored Jan 8, 2025
1 parent c36d3f4 commit 9e7de90
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ older version. Refer to the table below for the version compatibility matrix.

| Substrait... | ... is supported by validator ... |
| --------------- | ---------------------------------------------- |
| 0.57.x | 0.1.0 - 0.1.1 (current version) |
| 0.57.x | 0.1.0 - 0.1.2 (current version) |
| 0.21.x - 0.56.x | try 0.0.11 or 0.1.x, but your mileage may vary |
| 0.20.x | 0.0.11 |
| 0.19.x | 0.0.10 |
Expand Down
4 changes: 2 additions & 2 deletions c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substrait-validator-c"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"

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

[dependencies]
substrait-validator = { path = "../rs", version = "0.1.1" }
substrait-validator = { path = "../rs", version = "0.1.2" }
libc = "0.2"
thiserror = "2.0"
once_cell = "1.19"
2 changes: 1 addition & 1 deletion ci/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.2
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Procedural macros for substrait-validator"
homepage = "https://substrait.io/"
repository = "https://github.com/substrait-io/substrait-validator"
readme = "README.md"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"

Expand Down
4 changes: 2 additions & 2 deletions py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substrait-validator-py"
version = "0.1.1"
version = "0.1.2"
edition = "2018"
license = "Apache-2.0"
include = [
Expand Down Expand Up @@ -33,7 +33,7 @@ name = "substrait_validator"
doc = false

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

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ backend-path = ["."]

[project]
name = "substrait-validator"
version = "0.1.1"
version = "0.1.2"
description = "Validator for Substrait query plans"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
4 changes: 2 additions & 2 deletions rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Substrait validator"
homepage = "https://substrait.io/"
repository = "https://github.com/substrait-io/substrait-validator"
readme = "README.md"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"
include = ["src", "build.rs", "README.md"]
Expand All @@ -29,7 +29,7 @@ prost-types = "0.13.4"

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

# Google/protobuf has a funny idea about case conventions (it converts them all
# over the place) and prost remaps to Rust's conventions to boot. So, to
Expand Down
4 changes: 2 additions & 2 deletions rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plans.

```
[dependencies]
substrait-validator = "0.1.1"
substrait-validator = "0.1.2"
```

YAML file resolution
Expand All @@ -20,7 +20,7 @@ dependency:

```
[dependencies]
substrait-validator = { version = "0.1.1", features = ["curl"] }
substrait-validator = { version = "0.1.2", features = ["curl"] }
```

This adds the `substrait_validator::Config::add_curl_yaml_uri_resolver()`
Expand Down
4 changes: 2 additions & 2 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-runner"
version = "0.1.1"
version = "0.1.2"
edition = "2018"
license = "Apache-2.0"
default-run = "runner"
Expand All @@ -18,7 +18,7 @@ path = "src/find_protoc.rs"
protoc = ["dep:protobuf-src", "substrait-validator/protoc"]

[dependencies]
substrait-validator = { path = "../rs", version = "0.1.1" }
substrait-validator = { path = "../rs", version = "0.1.2" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
walkdir = "2"
Expand Down

0 comments on commit 9e7de90

Please sign in to comment.