diff --git a/CHANGELOG.md b/CHANGELOG.md index cf54387..cf67c9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview ## [Unreleased] +## [0.9.2] - 2025-11-20 +### Changed +- Bumped trino-rust-client-macros to 0.7.1 +- Integration tests are no longer published to crates.io + ## [0.9.1] - 2025-11-20 ### Added - Spooling protocol support for efficient large result set handling [#26](https://github.com/nudibranches-tech/trino-rust-client/pull/26) @@ -56,7 +61,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview ## [0.1.0] - 2020-10-01 - Initial release -[Unreleased]: https://github.com/nudibranches-tech/trino-rust-client/compare/v0.9.1...HEAD +[Unreleased]: https://github.com/nudibranches-tech/trino-rust-client/compare/v0.9.2...HEAD +[0.9.2]: https://github.com/nudibranches-tech/trino-rust-client/compare/v0.9.1...v0.9.2 [0.9.1]: https://github.com/nudibranches-tech/trino-rust-client/compare/v0.8.0...v0.9.1 [0.8.0]: https://github.com/nudibranches-tech/trino-rust-client/compare/v0.5.1...v0.8.0 [0.5.1]: https://github.com/nooberfsh/prusto/compare/v0.5.0...v0.5.1 diff --git a/Cargo.toml b/Cargo.toml index b68cb3c..692b26c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -86,7 +86,7 @@ serde_json = "1.0.145" thiserror = "2.0.17" tokio = {version = "1.16", features = ["full"]} tracing-subscriber = {version = "0.3", default-features = false, features = ["fmt", "env-filter"]} -trino-rust-client-macros = {version = "0.7.0", path = "trino-rust-client-macros"} +trino-rust-client-macros = {version = "0.7.1", path = "trino-rust-client-macros"} url = "2.5.7" uuid = {version = "1.18.1", features = ["serde", "v4"]} zstd = "0.13" @@ -98,4 +98,4 @@ edition = "2021" homepage = "https://github.com/nudibranches-tech/trino-rust-client" license = "MIT" repository = "https://github.com/nudibranches-tech/trino-rust-client" -version = "0.9.1" +version = "0.9.2" diff --git a/README.md b/README.md index 7a75196..ae594fb 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,10 @@ Fork rationale : ```toml # Cargo.toml [dependencies] -trino-rust-client = "0.9.1" +trino-rust-client = "0.9.2" # For spooling protocol support -trino-rust-client = { version = "0.9.1", features = ["spooling"] } +trino-rust-client = { version = "0.9.2", features = ["spooling"] } ``` ## Example diff --git a/trino-rust-client-macros/Cargo.toml b/trino-rust-client-macros/Cargo.toml index 237b0f0..7823052 100644 --- a/trino-rust-client-macros/Cargo.toml +++ b/trino-rust-client-macros/Cargo.toml @@ -16,4 +16,4 @@ keywords = ["trino"] license = {workspace = true} name = "trino-rust-client-macros" repository = {workspace = true} -version = "0.7.0" +version = "0.7.1"