From edd45d318162d260bac2b965a4be9773a603756c Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Mon, 3 Aug 2026 15:40:56 +0200 Subject: [PATCH 1/2] chore: Release 0.7.0 --- CHANGELOG.md | 2 ++ Cargo.lock | 8 ++++---- Cargo.toml | 2 +- README.md | 4 ++-- tests/test-definition.yaml | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 805ea76..6819c1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.7.0] - 2026-08-03 + ### Changed - Switch from the older `prusto` crate to the forked `trino-rust-client` ([#116]). diff --git a/Cargo.lock b/Cargo.lock index 1271979..aeeaf18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4142,7 +4142,7 @@ dependencies = [ [[package]] name = "trino-lb" -version = "0.6.0" +version = "0.7.0" dependencies = [ "askama", "axum", @@ -4192,7 +4192,7 @@ dependencies = [ [[package]] name = "trino-lb-bench" -version = "0.6.0" +version = "0.7.0" dependencies = [ "clap", "futures", @@ -4204,7 +4204,7 @@ dependencies = [ [[package]] name = "trino-lb-core" -version = "0.6.0" +version = "0.7.0" dependencies = [ "chrono", "http", @@ -4227,7 +4227,7 @@ dependencies = [ [[package]] name = "trino-lb-persistence" -version = "0.6.0" +version = "0.7.0" dependencies = [ "bincode", "enum_dispatch", diff --git a/Cargo.toml b/Cargo.toml index 2e07bc6..b81c765 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.6.0" +version = "0.7.0" authors = ["Stackable GmbH "] license = "Apache-2.0" edition = "2024" diff --git a/README.md b/README.md index 9c05de1..c920f11 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Make sure you clone this repo and run the following command from the root direct In case you don't have any Trino cluster at hand you can start trino-lb without any Trino cluster as follows: ```bash -docker run -p 8080:8080 -v ./example-configs/simple-no-trino.yaml:/etc/trino-lb-config.yaml --rm oci.stackable.tech/stackable/trino-lb:0.6.0 +docker run -p 8080:8080 -v ./example-configs/simple-no-trino.yaml:/etc/trino-lb-config.yaml --rm oci.stackable.tech/stackable/trino-lb:0.7.0 ``` This starts trino-lb listening on . @@ -52,7 +52,7 @@ Afterwards start trino-lb using the following command. We are using self-signed certificates for testing purpose here. ```bash -docker run -p 443:8443 -v ./example-configs/docker-simple-single-trino.yaml:/etc/trino-lb-config.yaml -v ./example-configs/self-signed-certs/:/self-signed-certs/ --rm oci.stackable.tech/stackable/trino-lb:0.6.0 +docker run -p 443:8443 -v ./example-configs/docker-simple-single-trino.yaml:/etc/trino-lb-config.yaml -v ./example-configs/self-signed-certs/:/self-signed-certs/ --rm oci.stackable.tech/stackable/trino-lb:0.7.0 ``` > [!NOTE] diff --git a/tests/test-definition.yaml b/tests/test-definition.yaml index b059ea5..e1aa2bf 100644 --- a/tests/test-definition.yaml +++ b/tests/test-definition.yaml @@ -3,7 +3,7 @@ dimensions: - name: trino-lb values: - oci.stackable.tech/stackable/trino-lb:dev - # - oci.stackable.tech/stackable/trino-lb:0.6.0 + # - oci.stackable.tech/stackable/trino-lb:0.7.0 # - foo:bar - name: trino values: From 949b19d7f379e66c4a8a413dc04a16c1fae3e829 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Mon, 3 Aug 2026 15:42:49 +0200 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6819c1f..6a202d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file. ### Changed -- Switch from the older `prusto` crate to the forked `trino-rust-client` ([#116]). +- Switch from the older (forked) `prusto` crate to `trino-rust-client` ([#116]). ### Fixed