diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dd0b78..415780c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +## 0.6.0 (12. july, 2023) +### Changed +- Updated ODBC-Api to 0.57.0 + ## 0.5.0 (31. March, 2023) ### Changed - Updated ODBC-Api to 0.55.0 diff --git a/Cargo.toml b/Cargo.toml index 1e04e21..bec6c9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum_odbc" -version = "0.5.0" +version = "0.6.0" authors = ["Andrew Wheeler "] description = "Library to Provide an ODBC-Api layer." edition = "2021" @@ -14,19 +14,19 @@ repository = "https://github.com/AscendingCreations/AxumOdbc" iodbc = ["odbc-api/iodbc"] [dependencies] -axum-core = "0.3.3" -serde = "1.0.159" -serde_json = "1.0.95" -tokio = { version = "1.27.0", features = ["full"] } -async-trait = "0.1.68" +axum-core = "0.3.4" +serde = "1.0.171" +serde_json = "1.0.102" +tokio = { version = "1.29.1", features = ["full"] } +async-trait = "0.1.71" tracing = "0.1.37" -thiserror = "1.0.40" -http = "0.2.8" -odbc-api = "0.55.0" -once_cell = "1.17.1" +thiserror = "1.0.43" +http = "0.2.9" +odbc-api = "0.57.0" +once_cell = "1.18.0" crossbeam-queue = "0.3.8" [dev-dependencies] -anyhow = "1.0.70" -axum = "0.6.12" +anyhow = "1.0.71" +axum = "0.6.18" diff --git a/README.md b/README.md index 8cf4c4d..dee0cb5 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Axum ODBC uses [`tokio`] runtime. ```toml # Cargo.toml [dependencies] -axum_odbc = "0.5.0" +axum_odbc = "0.6.0" ``` #### Cargo Feature Flags