Skip to content

Commit 03080f7

Browse files
authored
Merge pull request #69 from siketyan/release/v0.4.0
chore: Release v0.4.0
2 parents 9bebed3 + 755c84a commit 03080f7

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ Since this crate is fully cross-platform, we are welcome to add a new platform t
2020
Add to your Cargo.toml as a dependency as follows:
2121
```toml
2222
[dependencies]
23-
jpki = "0.3"
23+
jpki = "0.4"
2424
```
2525

2626
## ✨ Features
27-
- **digest**: Utility for calculating digests to sign or verify the data (non-default).
2827
- **pcsc**: PC/SC support for communicating with your cards (non-default).
2928
- **tracing**: Logging feature on tracing ecosystem (non-default).
3029

cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jpki-cli"
33
description = "Read certificates, sign and verify documents using your JPKI card."
4-
version = "0.3.0"
4+
version = "0.4.0"
55
license = "LGPL-2.1-or-later"
66
homepage = "https://github.com/siketyan/jpki-rs"
77
repository = "https://github.com/siketyan/jpki-rs.git"
@@ -20,7 +20,7 @@ apdu = "0.2"
2020
clap = { version = "4.0", features = ["derive"] }
2121
dialoguer = "0.10"
2222
hex = "0.4"
23-
jpki = { version = "=0.3.0", path = "../core", features = ["pcsc", "serde"] }
23+
jpki = { version = "=0.4.0", path = "../core", features = ["pcsc", "serde"] }
2424
pcsc = "2.7"
2525
ring = "0.17.0-alpha.10"
2626
serde_json = "1.0"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jpki"
33
description = "Read certificates, sign and verify documents using your JPKI card."
4-
version = "0.3.0"
4+
version = "0.4.0"
55
license = "LGPL-2.1-or-later"
66
homepage = "https://github.com/siketyan/jpki-rs"
77
repository = "https://github.com/siketyan/jpki-rs.git"

ffi/android/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jpki-ffi-android"
33
description = "Read certificates, sign and verify documents using your JPKI card."
4-
version = "0.3.0"
4+
version = "0.4.0"
55
license = "LGPL-2.1-or-later"
66
homepage = "https://github.com/siketyan/jpki-rs"
77
repository = "https://github.com/siketyan/jpki-rs.git"
@@ -23,5 +23,5 @@ crate-type = ["cdylib"]
2323
android_log = "0.1.3"
2424
log = "0.4.14"
2525
jni = "0.19.0"
26-
jpki = { version = "=0.3.0", path = "../../core" }
26+
jpki = { version = "=0.4.0", path = "../../core" }
2727
thiserror = "1.0"

ffi/generic/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jpki-ffi-generic"
33
description = "Generic FFI binding of jpki-rs for C/C++ and many other languages."
4-
version = "0.3.0"
4+
version = "0.4.0"
55
license = "LGPL-2.1-or-later"
66
homepage = "https://github.com/siketyan/jpki-rs"
77
repository = "https://github.com/siketyan/jpki-rs.git"
@@ -18,7 +18,7 @@ name = "jpki"
1818
crate-type = ["cdylib"]
1919

2020
[dependencies]
21-
jpki = { version = "=0.3.0", path = "../../core" }
21+
jpki = { version = "=0.4.0", path = "../../core" }
2222

2323
[build-dependencies]
2424
cbindgen = "0.24"

0 commit comments

Comments
 (0)