diff --git a/Cargo.lock b/Cargo.lock index 6e7a8469..c3d43f2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -924,7 +924,7 @@ dependencies = [ [[package]] name = "odbc-api" -version = "7.2.1" +version = "7.2.2" dependencies = [ "anyhow", "atoi", @@ -946,7 +946,7 @@ dependencies = [ [[package]] name = "odbc-api-derive" -version = "7.2.1" +version = "7.2.2" dependencies = [ "odbc-api", "quote", diff --git a/Changelog.md b/Changelog.md index 1af22df2..a13e7c1a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,8 +1,12 @@ # Changelog +## 7.2.2 + +* Fix: Add metadata for `odbc-api-derive` crate + ## 7.2.1 -* Fix release pipeline for derive feature +* Fix: Release pipeline for derive feature ## 7.2.0 diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 87afd0c7..ffcdd443 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,10 +1,32 @@ [package] name = "odbc-api-derive" -version = "7.2.1" +version = "7.2.2" edition = "2021" +license = "MIT" +repository = "https://github.com/pacman82/odbc-api" +documentation = "https://docs.rs/odbc-api-derive/" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +# A short blurb about the package. This is not rendered in any format when +# uploaded to crates.io (aka this is not markdown). +description = "Derive macros for odbc-api crate" + +# This is a list of up to five keywords that describe this crate. Keywords +# are searchable on crates.io, and you may choose any words that would +# help someone find this crate. +keywords = ["odbc", "database", "sql"] + +# This is a list of up to five categories where this crate would fit. +# Categories are a fixed list available at crates.io/category_slugs, and +# they must match exactly. +categories = ["api-bindings", "database"] + +# This points to a file under the package root (relative to this `Cargo.toml`). +# The contents of this file are stored and indexed in the registry. +# crates.io will render this file and place the result on the crate's page. +readme = "../Readme.md" + [lib] proc-macro = true diff --git a/odbc-api/Cargo.toml b/odbc-api/Cargo.toml index 89cf47c2..66a6f3c4 100644 --- a/odbc-api/Cargo.toml +++ b/odbc-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odbc-api" -version = "7.2.1" +version = "7.2.2" 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.1", path = "../derive", optional = true} +odbc-api-derive ={ version = "7.2.2", 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 45d6e60b..55c89de3 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.0", path = "../odbc-api" } +odbc-api = { version = "7.2.2", path = "../odbc-api" } csv = "1.3.0" anyhow = "1.0.82" stderrlog = "0.6.0"