From 13fce9943812bd1ccca9671921ab451d7d1539fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 10:20:36 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 6 +++--- derive/Cargo.toml | 2 +- odbc-api/Cargo.toml | 4 ++-- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 246ccaff..37af8c52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [10.0.1](https://github.com/pacman82/odbc-api/compare/v10.0.0...v10.0.1) - 2024-12-11 + +### Other + +- Validate bulk inserting i64 works. +- Fix typo in variable name +- *(deps)* bump thiserror from 2.0.4 to 2.0.6 +- *(deps)* bump thiserror from 2.0.3 to 2.0.4 +- *(deps)* bump anyhow from 1.0.93 to 1.0.94 +- *(deps)* bump tokio from 1.41.1 to 1.42.0 +- *(deps)* bump syn from 2.0.89 to 2.0.90 + ## [10.0.0](https://github.com/pacman82/odbc-api/compare/v9.0.0...v10.0.0) - 2024-11-24 ### Added diff --git a/Cargo.lock b/Cargo.lock index e3497079..059cd3b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -986,7 +986,7 @@ dependencies = [ [[package]] name = "odbc-api" -version = "10.0.0" +version = "10.0.1" dependencies = [ "anyhow", "atoi", @@ -1007,7 +1007,7 @@ dependencies = [ [[package]] name = "odbc-api-derive" -version = "9.0.1" +version = "9.0.2" dependencies = [ "odbc-api", "quote", diff --git a/derive/Cargo.toml b/derive/Cargo.toml index ac2fa60b..0c2ddea5 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odbc-api-derive" -version = "9.0.1" +version = "9.0.2" edition = "2021" license = "MIT" repository = "https://github.com/pacman82/odbc-api" diff --git a/odbc-api/Cargo.toml b/odbc-api/Cargo.toml index bf49c6fb..5125c7c2 100644 --- a/odbc-api/Cargo.toml +++ b/odbc-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odbc-api" -version = "10.0.0" +version = "10.0.1" authors = ["Markus Klein"] edition = "2021" license = "MIT" @@ -89,7 +89,7 @@ log = "0.4.22" # Interacting with UTF-16 texts for wide columns or wide function calls widestring = "1.1.0" atoi = "2.0.0" -odbc-api-derive ={ version = "9.0.1", path = "../derive", optional = true} +odbc-api-derive ={ version = "9.0.2", path = "../derive", optional = true} [target.'cfg(windows)'.dependencies] # We use winit to display dialogs prompting for connection strings. We can deactivate default