Skip to content

Commit

Permalink
fix metadata for odbc-api-derive
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Apr 29, 2024
1 parent 9c035b4 commit a5c448e
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
24 changes: 23 additions & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions odbc-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odbc-api"
version = "7.2.1"
version = "7.2.2"
authors = ["Markus Klein"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion odbcsv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a5c448e

Please sign in to comment.