Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Release v0.4.3 #85

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2"
version = "0.4.3"
license = "LGPL-2.1-or-later"
homepage = "https://github.com/siketyan/jpki-rs"
repository = "https://github.com/siketyan/jpki-rs.git"
Expand All @@ -23,7 +23,7 @@ clap = { version = "4.0", features = ["derive"] }
der = { version = "0.7.1", features = ["alloc", "derive", "oid"] }
dialoguer = "0.10"
hex = "0.4"
jpki = { version = "=0.4.2", path = "../core", features = ["pcsc", "serde"] }
jpki = { version = "=0.4.3", path = "../core", features = ["pcsc", "serde"] }
once_cell = "1.15"
pcsc = "2.7"
ring = "0.16.20"
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.2"
version = "0.4.3"
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.2"
version = "0.4.3"
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.20.0"
jpki = { version = "=0.4.2", path = "../../core" }
jpki = { version = "=0.4.3", 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.2"
version = "0.4.3"
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.2", path = "../../core" }
jpki = { version = "=0.4.3", path = "../../core" }

[build-dependencies]
cbindgen = "0.24"
Loading