Skip to content

Commit ab297cb

Browse files
authored
Merge pull request #74 from siketyan/release/v0.4.1
chore: Release v0.4.1
2 parents 1e93c6b + d05c247 commit ab297cb

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,3 +272,9 @@ jobs:
272272
echo "Still waiting..."
273273
sleep 5
274274
done
275+
276+
- name: Publish to crates.io (FFI/Generic)
277+
uses: actions-rs/cargo@v1
278+
with:
279+
command: publish
280+
args: --verbose --allow-dirty -p jpki-ffi-generic

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.4.0"
4+
version = "0.4.1"
55
license = "LGPL-2.1-or-later"
66
homepage = "https://github.com/siketyan/jpki-rs"
77
repository = "https://github.com/siketyan/jpki-rs.git"
@@ -22,7 +22,7 @@ apdu = "0.2"
2222
clap = { version = "4.0", features = ["derive"] }
2323
dialoguer = "0.10"
2424
hex = "0.4"
25-
jpki = { version = "=0.4.0", path = "../core", features = ["pcsc", "serde"] }
25+
jpki = { version = "=0.4.1", path = "../core", features = ["pcsc", "serde"] }
2626
once_cell = "1.15"
2727
pcsc = "2.7"
2828
ring = "0.17.0-alpha.10"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.4.0"
4+
version = "0.4.1"
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

Lines changed: 2 additions & 2 deletions
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.4.0"
4+
version = "0.4.1"
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.4.0", path = "../../core" }
26+
jpki = { version = "=0.4.1", path = "../../core" }
2727
thiserror = "1.0"

ffi/generic/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.4.0"
4+
version = "0.4.1"
55
license = "LGPL-2.1-or-later"
66
homepage = "https://github.com/siketyan/jpki-rs"
77
repository = "https://github.com/siketyan/jpki-rs.git"
@@ -19,7 +19,7 @@ name = "jpki"
1919
crate-type = ["cdylib"]
2020

2121
[dependencies]
22-
jpki = { version = "=0.4.0", path = "../../core" }
22+
jpki = { version = "=0.4.1", path = "../../core" }
2323

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

0 commit comments

Comments
 (0)