From 373f2529a55461caf67e6d7f6874dd7fd766b997 Mon Sep 17 00:00:00 2001 From: Eric Fu Date: Thu, 26 Dec 2024 15:10:49 +0800 Subject: [PATCH] bump version to 0.25 and update changelog --- CHANGELOG.md | 4 ++++ Cargo.lock | 6 +++--- Cargo.toml | 2 +- sqllogictest-bin/Cargo.toml | 4 ++-- sqllogictest-engines/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fa1b63..256c3ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.25.0] - 2024-12-26 + +* runner: Add `retry` clause to `statement ok` and `query ok|error`. + ## [0.24.0] - 2024-12-20 * runner: Added a `Normalizer` type for normalizing result values. A new function diff --git a/Cargo.lock b/Cargo.lock index 721ee87..e6a8eee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1884,7 +1884,7 @@ dependencies = [ [[package]] name = "sqllogictest" -version = "0.24.0" +version = "0.25.0" dependencies = [ "async-trait", "educe", @@ -1907,7 +1907,7 @@ dependencies = [ [[package]] name = "sqllogictest-bin" -version = "0.24.0" +version = "0.25.0" dependencies = [ "anyhow", "async-trait", @@ -1929,7 +1929,7 @@ dependencies = [ [[package]] name = "sqllogictest-engines" -version = "0.24.0" +version = "0.25.0" dependencies = [ "async-trait", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 081de2d..5113a9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["sqllogictest", "sqllogictest-bin", "sqllogictest-engines", "tests"] [workspace.package] -version = "0.24.0" +version = "0.25.0" edition = "2021" homepage = "https://github.com/risinglightdb/sqllogictest-rs" keywords = ["sql", "database", "parser", "cli"] diff --git a/sqllogictest-bin/Cargo.toml b/sqllogictest-bin/Cargo.toml index 117691c..f188c3a 100644 --- a/sqllogictest-bin/Cargo.toml +++ b/sqllogictest-bin/Cargo.toml @@ -23,8 +23,8 @@ glob = "0.3" itertools = "0.13" quick-junit = { version = "0.5" } rand = "0.8" -sqllogictest = { path = "../sqllogictest", version = "0.24" } -sqllogictest-engines = { path = "../sqllogictest-engines", version = "0.24" } +sqllogictest = { path = "../sqllogictest", version = "0.25" } +sqllogictest-engines = { path = "../sqllogictest-engines", version = "0.25" } tokio = { version = "1", features = [ "rt", "rt-multi-thread", diff --git a/sqllogictest-engines/Cargo.toml b/sqllogictest-engines/Cargo.toml index 540f39c..e50446a 100644 --- a/sqllogictest-engines/Cargo.toml +++ b/sqllogictest-engines/Cargo.toml @@ -20,7 +20,7 @@ postgres-types = { version = "0.2.8", features = ["derive", "with-chrono-0_4"] } rust_decimal = { version = "1.36.0", features = ["tokio-pg"] } serde = { version = "1", features = ["derive"] } serde_json = "1" -sqllogictest = { path = "../sqllogictest", version = "0.24" } +sqllogictest = { path = "../sqllogictest", version = "0.25" } thiserror = "2" tokio = { version = "1", features = [ "rt",