Bump versions for releases.

This commit is contained in:
Heiko Schaefer 2021-12-02 18:45:46 +01:00
parent e5b7f0c914
commit 413e8b7d2a
No known key found for this signature in database
GPG key ID: 4A849A1904CCBD7D
6 changed files with 13 additions and 13 deletions

View file

@ -14,8 +14,8 @@ documentation = "https://docs.rs/crate/openpgp-card-examples"
[dependencies] [dependencies]
sequoia-openpgp = "1.3" sequoia-openpgp = "1.3"
nettle = "7" nettle = "7"
openpgp-card = { path = "../openpgp-card", version = "0.0.5" } openpgp-card = { path = "../openpgp-card", version = "0.1" }
openpgp-card-pcsc = { path = "../pcsc", version = "0.0.5" } openpgp-card-pcsc = { path = "../pcsc", version = "0.1" }
openpgp-card-sequoia = { path = "../openpgp-card-sequoia", version = "0.0.5" } openpgp-card-sequoia = { path = "../openpgp-card-sequoia", version = "0.0.5" }
chrono = "0.4" chrono = "0.4"
anyhow = "1" anyhow = "1"

View file

@ -14,9 +14,9 @@ documentation = "https://docs.rs/crate/openpgp-card-sequoia"
[dependencies] [dependencies]
sequoia-openpgp = "1.4" sequoia-openpgp = "1.4"
nettle = "7" nettle = "7"
openpgp-card = { path = "../openpgp-card", version = "0.0.5" } openpgp-card = { path = "../openpgp-card", version = "0.1" }
openpgp-card-pcsc = { path = "../pcsc", version = "0.0.5" } openpgp-card-pcsc = { path = "../pcsc", version = "0.1" }
openpgp-card-scdc = { path = "../scdc", version = "0.0.3" } openpgp-card-scdc = { path = "../scdc", version = "0.1" }
chrono = "0.4" chrono = "0.4"
anyhow = "1" anyhow = "1"
thiserror = "1" thiserror = "1"

View file

@ -5,7 +5,7 @@
name = "openpgp-card" name = "openpgp-card"
description = "A client implementation for the OpenPGP card specification" description = "A client implementation for the OpenPGP card specification"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.0.5" version = "0.1.0"
authors = ["Heiko Schaefer <heiko@schaefer.name>"] authors = ["Heiko Schaefer <heiko@schaefer.name>"]
edition = "2018" edition = "2018"
repository = "https://gitlab.com/hkos/openpgp-card" repository = "https://gitlab.com/hkos/openpgp-card"

View file

@ -6,13 +6,13 @@ name = "openpgp-card-pcsc"
description = "PCSC OpenPGP card backend, for use with the openpgp-card crate" description = "PCSC OpenPGP card backend, for use with the openpgp-card crate"
authors = ["Heiko Schaefer <heiko@schaefer.name>"] authors = ["Heiko Schaefer <heiko@schaefer.name>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.0.5" version = "0.1.0"
edition = "2018" edition = "2018"
repository = "https://gitlab.com/hkos/openpgp-card" repository = "https://gitlab.com/hkos/openpgp-card"
documentation = "https://docs.rs/crate/openpgp-card-pcsc" documentation = "https://docs.rs/crate/openpgp-card-pcsc"
[dependencies] [dependencies]
openpgp-card = { path = "../openpgp-card", version = "0.0.5" } openpgp-card = { path = "../openpgp-card", version = "0.1" }
iso7816-tlv = "0.4" iso7816-tlv = "0.4"
pcsc = "2" pcsc = "2"
anyhow = "1" anyhow = "1"

View file

@ -6,13 +6,13 @@ name = "openpgp-card-scdc"
description = "Experimental SCDaemon Client, for use with the openpgp-card crate" description = "Experimental SCDaemon Client, for use with the openpgp-card crate"
authors = ["Heiko Schaefer <heiko@schaefer.name>"] authors = ["Heiko Schaefer <heiko@schaefer.name>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.0.3" version = "0.1.0"
edition = "2018" edition = "2018"
repository = "https://gitlab.com/hkos/openpgp-card" repository = "https://gitlab.com/hkos/openpgp-card"
documentation = "https://docs.rs/crate/openpgp-card-scdc" documentation = "https://docs.rs/crate/openpgp-card-scdc"
[dependencies] [dependencies]
openpgp-card = { path = "../openpgp-card", version = "0.0.5" } openpgp-card = { path = "../openpgp-card", version = "0.1" }
sequoia-ipc = "0.26" sequoia-ipc = "0.26"
hex = "0.4" hex = "0.4"
anyhow = "1" anyhow = "1"

View file

@ -5,7 +5,7 @@
name = "openpgp-card-tools" name = "openpgp-card-tools"
description = "CLI tools for OpenPGP cards" description = "CLI tools for OpenPGP cards"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.0.1" version = "0.0.2"
authors = ["Heiko Schaefer <heiko@schaefer.name>"] authors = ["Heiko Schaefer <heiko@schaefer.name>"]
edition = "2018" edition = "2018"
repository = "https://gitlab.com/hkos/openpgp-card" repository = "https://gitlab.com/hkos/openpgp-card"
@ -14,8 +14,8 @@ documentation = "https://docs.rs/crate/openpgp-card-tools"
[dependencies] [dependencies]
sequoia-openpgp = "1.3" sequoia-openpgp = "1.3"
nettle = "7" nettle = "7"
openpgp-card = { path = "../openpgp-card", version = "0.0.5" } openpgp-card = { path = "../openpgp-card", version = "0.1" }
openpgp-card-pcsc = { path = "../pcsc", version = "0.0.5" } openpgp-card-pcsc = { path = "../pcsc", version = "0.1" }
openpgp-card-sequoia = { path = "../openpgp-card-sequoia", version = "0.0.5" } openpgp-card-sequoia = { path = "../openpgp-card-sequoia", version = "0.0.5" }
rpassword = "5" rpassword = "5"
chrono = "0.4" chrono = "0.4"