Skip to content

Commit 7d58d0e

Browse files
authored
Publish Trustfall 0.8.0 in Rust and 0.2.0 in Python. (#700)
Includes: - Fix for incorrect type coercion / filtering inside `@optional` that didn't exist. - Breaking changes to the representation of exposed Rust error types. - Lots of small improvements to the quality of diagnostic messages for various kinds of incorrect queries. - Maintenance release of trustfall_stubgen, to update to the new major Trustfall library dependency version.
1 parent d7a1cae commit 7d58d0e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pytrustfall/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pytrustfall"
3-
version = "0.1.7"
3+
version = "0.2.0"
44
rust-version.workspace = true
55
edition.workspace = true
66
authors.workspace = true

trustfall/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trustfall"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
license = "Apache-2.0"
55
description = "The trustfall query engine, empowering you to query everything."
66
repository = "https://github.com/obi1kenobi/trustfall"
@@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1616

1717
[dependencies]
1818
anyhow = { workspace = true }
19-
trustfall_core = { version = "=0.7.1", path = "../trustfall_core" }
19+
trustfall_core = { version = "=0.8.0", path = "../trustfall_core" }
2020
trustfall_derive = { version = "=0.3.1", path = "../trustfall_derive" }
2121

2222
[dev-dependencies] # including examples dependencies

trustfall_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trustfall_core"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
license = "Apache-2.0"
55
description = "The trustfall query engine, empowering you to query everything."
66
repository = "https://github.com/obi1kenobi/trustfall"

trustfall_stubgen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trustfall_stubgen"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
license = "Apache-2.0"
55
description = "Generate a Trustfall adapter stub for a given schema."
66
repository = "https://github.com/obi1kenobi/trustfall"
@@ -23,7 +23,7 @@ cli = ["dep:clap"]
2323
quote = { workspace = true }
2424
syn = { workspace = true }
2525
proc-macro2 = { workspace = true }
26-
trustfall = { path = "../trustfall", version = "0.7.0" }
26+
trustfall = { path = "../trustfall", version = "0.8.0" }
2727
maplit = { workspace = true }
2828
async-graphql-parser = { workspace = true }
2929
async-graphql-value = { workspace = true }

0 commit comments

Comments
 (0)