From 35f6240608797a8aebe0995a593c7590c14ee99d Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Sat, 1 Oct 2022 15:28:52 +0200 Subject: [PATCH] Bump versions. This fixes a mistake with the openpgp-card-pcsc 0.2.2 release: openpgp-card-pcsc 0.2.2 depends on openpgp-card 0.3. However, this results in an (accidental) semver break, because openpgp-card-pcsc exposes parts of the openpgp-card API. See https://gitlab.com/openpgp-card/openpgp-card/-/issues/41 --- openpgp-card-sequoia/Cargo.toml | 6 +++--- pcsc/Cargo.toml | 2 +- tools/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/openpgp-card-sequoia/Cargo.toml b/openpgp-card-sequoia/Cargo.toml index 9201f3d..3b0f244 100644 --- a/openpgp-card-sequoia/Cargo.toml +++ b/openpgp-card-sequoia/Cargo.toml @@ -5,7 +5,7 @@ name = "openpgp-card-sequoia" description = "Wrapper of openpgp-card for use with Sequoia PGP" license = "MIT OR Apache-2.0" -version = "0.0.19" +version = "0.0.20" authors = ["Heiko Schaefer "] edition = "2018" repository = "https://gitlab.com/openpgp-card/openpgp-card" @@ -21,8 +21,8 @@ thiserror = "1" log = "0.4" [dev-dependencies] -openpgp-card-pcsc = { path = "../pcsc", version = "0.2.2" } -#openpgp-card-scdc = { path = "../scdc", version = "0.2.2" } +openpgp-card-pcsc = { path = "../pcsc", version = "0.3" } +#openpgp-card-scdc = { path = "../scdc", version = "0.3" } env_logger = "0.9" [[example]] diff --git a/pcsc/Cargo.toml b/pcsc/Cargo.toml index 9efe903..32677d7 100644 --- a/pcsc/Cargo.toml +++ b/pcsc/Cargo.toml @@ -6,7 +6,7 @@ name = "openpgp-card-pcsc" description = "PCSC OpenPGP card backend, for use with the openpgp-card crate" authors = ["Heiko Schaefer "] license = "MIT OR Apache-2.0" -version = "0.2.2" +version = "0.3.0" edition = "2018" repository = "https://gitlab.com/openpgp-card/openpgp-card" documentation = "https://docs.rs/crate/openpgp-card-pcsc" diff --git a/tools/Cargo.toml b/tools/Cargo.toml index fc72826..44af197 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -14,8 +14,8 @@ documentation = "https://docs.rs/crate/openpgp-card-tools" [dependencies] sequoia-openpgp = "1.3" openpgp-card = { path = "../openpgp-card", version = "0.3" } -openpgp-card-pcsc = { path = "../pcsc", version = "0.2.2" } -openpgp-card-sequoia = { path = "../openpgp-card-sequoia", version = "0.0.19" } +openpgp-card-pcsc = { path = "../pcsc", version = "0.3" } +openpgp-card-sequoia = { path = "../openpgp-card-sequoia", version = "0.0.20" } sshkeys = "0.3.2" pem = "1" rpassword = "6"