From 7f6857d6e9e226ab51dd2837dc168f5b15acb622 Mon Sep 17 00:00:00 2001 From: Belchior Oliveira Date: Sun, 18 May 2025 12:17:14 -0300 Subject: [PATCH] version 2.4.2 --- Cargo.toml | 2 +- tests/command_delete_spec.rs | 2 +- tests/command_insert_spec.rs | 2 +- tests/command_update_spec.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 908cba9..caf7d24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "Write SQL queries in a simple and composable way" documentation = "https://docs.rs/sql_query_builder" repository = "https://github.com/belchior/sql_query_builder" authors = ["Belchior Oliveira "] -version = "2.4.1" +version = "2.4.2" edition = "2021" rust-version = "1.62" license = "MIT" diff --git a/tests/command_delete_spec.rs b/tests/command_delete_spec.rs index 802c968..af2541a 100644 --- a/tests/command_delete_spec.rs +++ b/tests/command_delete_spec.rs @@ -129,7 +129,7 @@ mod builder_features { * [More context](https://github.com/belchior/sql_query_builder/pull/53) */ #[test] - fn select_builder_should_impl_send_and_sync() { + fn delete_builder_should_impl_send_and_sync() { fn assert_impl_sync_send(_builder: impl Sync + Send) {} assert_impl_sync_send(sql::Delete::new()); } diff --git a/tests/command_insert_spec.rs b/tests/command_insert_spec.rs index 639df28..73acb0d 100644 --- a/tests/command_insert_spec.rs +++ b/tests/command_insert_spec.rs @@ -129,7 +129,7 @@ mod builder_features { * [More context](https://github.com/belchior/sql_query_builder/pull/53) */ #[test] - fn select_builder_should_impl_send_and_sync() { + fn insert_builder_should_impl_send_and_sync() { fn assert_impl_sync_send(_builder: impl Sync + Send) {} assert_impl_sync_send(sql::Insert::new()); } diff --git a/tests/command_update_spec.rs b/tests/command_update_spec.rs index 1a3834b..06aae2d 100644 --- a/tests/command_update_spec.rs +++ b/tests/command_update_spec.rs @@ -138,7 +138,7 @@ mod builder_features { * [More context](https://github.com/belchior/sql_query_builder/pull/53) */ #[test] - fn select_builder_should_impl_send_and_sync() { + fn update_builder_should_impl_send_and_sync() { fn assert_impl_sync_send(_builder: impl Sync + Send) {} assert_impl_sync_send(sql::Update::new()); }