From f9a467ea98afb0db1db1e742a7e29de231cc8b40 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Mon, 3 Mar 2025 16:49:38 +0100 Subject: [PATCH] chore: Release 0.4.1 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 72418b7..0b0a4e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4264,7 +4264,7 @@ dependencies = [ [[package]] name = "trino-lb" -version = "0.4.0" +version = "0.4.1" dependencies = [ "askama", "axum 0.8.1", @@ -4311,7 +4311,7 @@ dependencies = [ [[package]] name = "trino-lb-bench" -version = "0.4.0" +version = "0.4.1" dependencies = [ "clap", "futures", @@ -4323,7 +4323,7 @@ dependencies = [ [[package]] name = "trino-lb-core" -version = "0.4.0" +version = "0.4.1" dependencies = [ "chrono", "http 1.2.0", @@ -4346,7 +4346,7 @@ dependencies = [ [[package]] name = "trino-lb-persistence" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bincode", "enum_dispatch", diff --git a/Cargo.toml b/Cargo.toml index a583788..fcfd369 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.4.0" +version = "0.4.1" authors = ["Stackable GmbH "] license = "Apache-2.0" edition = "2021" diff --git a/README.md b/README.md index 9e4f29d..85d3568 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,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.4.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.4.1 ``` This starts trino-lb listening on . @@ -51,7 +51,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.4.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.4.1 ``` > [!NOTE]