diff --git a/Cargo.lock b/Cargo.lock index 01af05f5..8a1e84a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -962,7 +962,7 @@ dependencies = [ [[package]] name = "odbc-api" -version = "7.2.2" +version = "7.2.3" dependencies = [ "anyhow", "atoi", @@ -984,7 +984,7 @@ dependencies = [ [[package]] name = "odbc-api-derive" -version = "7.2.2" +version = "7.2.3" dependencies = [ "odbc-api", "quote", diff --git a/Changelog.md b/Changelog.md index a13e7c1a..3fe6867c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,9 @@ # Changelog +# 7.2.3 + +* Update dependencies + ## 7.2.2 * Fix: Add metadata for `odbc-api-derive` crate diff --git a/derive/Cargo.toml b/derive/Cargo.toml index ffcdd443..c1ba2a0a 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odbc-api-derive" -version = "7.2.2" +version = "7.2.3" edition = "2021" license = "MIT" repository = "https://github.com/pacman82/odbc-api" diff --git a/odbc-api/Cargo.toml b/odbc-api/Cargo.toml index 8be2915d..907f6062 100644 --- a/odbc-api/Cargo.toml +++ b/odbc-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odbc-api" -version = "7.2.2" +version = "7.2.3" authors = ["Markus Klein"] edition = "2021" license = "MIT" @@ -76,7 +76,7 @@ log = "0.4.21" # Interacting with UTF-16 texts for wide columns or wide function calls widestring = "1.1.0" atoi = "2.0.0" -odbc-api-derive ={ version = "7.2.2", path = "../derive", optional = true} +odbc-api-derive ={ version = "7.2.3", path = "../derive", optional = true} [target.'cfg(windows)'.dependencies] # We use winit to display dialogs prompting for connection strings. We can deactivate default diff --git a/odbcsv/Cargo.toml b/odbcsv/Cargo.toml index 55c89de3..d0a1402c 100644 --- a/odbcsv/Cargo.toml +++ b/odbcsv/Cargo.toml @@ -29,7 +29,7 @@ readme = "Readme.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -odbc-api = { version = "7.2.2", path = "../odbc-api" } +odbc-api = { version = "7.2.3", path = "../odbc-api" } csv = "1.3.0" anyhow = "1.0.82" stderrlog = "0.6.0"