Skip to content

Commit

Permalink
Merge pull request #74 from siketyan/release/v0.4.1
Browse files Browse the repository at this point in the history
chore: Release v0.4.1
  • Loading branch information
siketyan authored Oct 2, 2022
2 parents 1e93c6b + d05c247 commit ab297cb
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,3 +272,9 @@ jobs:
echo "Still waiting..."
sleep 5
done
- name: Publish to crates.io (FFI/Generic)
uses: actions-rs/cargo@v1
with:
command: publish
args: --verbose --allow-dirty -p jpki-ffi-generic
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jpki-cli"
description = "Read certificates, sign and verify documents using your JPKI card."
version = "0.4.0"
version = "0.4.1"
license = "LGPL-2.1-or-later"
homepage = "https://github.com/siketyan/jpki-rs"
repository = "https://github.com/siketyan/jpki-rs.git"
Expand All @@ -22,7 +22,7 @@ apdu = "0.2"
clap = { version = "4.0", features = ["derive"] }
dialoguer = "0.10"
hex = "0.4"
jpki = { version = "=0.4.0", path = "../core", features = ["pcsc", "serde"] }
jpki = { version = "=0.4.1", path = "../core", features = ["pcsc", "serde"] }
once_cell = "1.15"
pcsc = "2.7"
ring = "0.17.0-alpha.10"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jpki"
description = "Read certificates, sign and verify documents using your JPKI card."
version = "0.4.0"
version = "0.4.1"
license = "LGPL-2.1-or-later"
homepage = "https://github.com/siketyan/jpki-rs"
repository = "https://github.com/siketyan/jpki-rs.git"
Expand Down
4 changes: 2 additions & 2 deletions ffi/android/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jpki-ffi-android"
description = "Read certificates, sign and verify documents using your JPKI card."
version = "0.4.0"
version = "0.4.1"
license = "LGPL-2.1-or-later"
homepage = "https://github.com/siketyan/jpki-rs"
repository = "https://github.com/siketyan/jpki-rs.git"
Expand All @@ -23,5 +23,5 @@ crate-type = ["cdylib"]
android_log = "0.1.3"
log = "0.4.14"
jni = "0.19.0"
jpki = { version = "=0.4.0", path = "../../core" }
jpki = { version = "=0.4.1", path = "../../core" }
thiserror = "1.0"
4 changes: 2 additions & 2 deletions ffi/generic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jpki-ffi-generic"
description = "Generic FFI binding of jpki-rs for C/C++ and many other languages."
version = "0.4.0"
version = "0.4.1"
license = "LGPL-2.1-or-later"
homepage = "https://github.com/siketyan/jpki-rs"
repository = "https://github.com/siketyan/jpki-rs.git"
Expand All @@ -19,7 +19,7 @@ name = "jpki"
crate-type = ["cdylib"]

[dependencies]
jpki = { version = "=0.4.0", path = "../../core" }
jpki = { version = "=0.4.1", path = "../../core" }

[build-dependencies]
cbindgen = "0.24"

0 comments on commit ab297cb

Please sign in to comment.