Skip to content

Commit

Permalink
Release 0.6.0 with odbc-api 0.57.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
genusistimelord committed Jul 12, 2023
1 parent 6ec7365 commit b638464
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum_odbc"
version = "0.5.0"
version = "0.6.0"
authors = ["Andrew Wheeler <[email protected]>"]
description = "Library to Provide an ODBC-Api layer."
edition = "2021"
Expand All @@ -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"

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b638464

Please sign in to comment.