Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion trino-rust-client-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Loading