Skip to content

Commit

Permalink
fix release pipeline for derive feature
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Apr 29, 2024
1 parent 0c37c21 commit 9c035b4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cargopublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ jobs:
env:
CARGO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
run: |
cd odbc-api && cargo publish --token "${CARGO_TOKEN}"
cargo publish --token "${CARGO_TOKEN}" --package odbc-api-derive
cargo publish --token "${CARGO_TOKEN}" --package odbc-api
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.

4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 7.2.1

* Fix release pipeline for derive feature

## 7.2.0

* Adds derive feature for deriving custom implementations of `FetchRow`.
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odbc-api-derive"
version = "0.1.0"
version = "7.2.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
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.0"
version = "7.2.1"
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 = "0.1.0", path = "../derive", optional = true}
odbc-api-derive ={ version = "7.2.1", path = "../derive", optional = true}

[target.'cfg(windows)'.dependencies]
# We use winit to display dialogs prompting for connection strings. We can deactivate default
Expand Down

0 comments on commit 9c035b4

Please sign in to comment.