Set version numbers for crates.io releases

This commit is contained in:
Heiko Schaefer 2021-08-18 19:57:54 +02:00
parent 85a05167d1
commit b8e3fc4816
4 changed files with 6 additions and 6 deletions

View file

@ -13,9 +13,9 @@ documentation = "https://docs.rs/crate/openpgp-card-sequoia"
[dependencies]
sequoia-openpgp = "1.3"
openpgp-card = { path = "../openpgp-card", version = "0.0.1" }
openpgp-card-scdc = { path = "../scdc" }
openpgp-card-pcsc = { path = "../pcsc" }
openpgp-card = { path = "../openpgp-card", version = "0.0.2" }
#openpgp-card-scdc = { path = "../scdc" }
openpgp-card-pcsc = { path = "../pcsc", version = "0.0.1" }
chrono = "0.4"
anyhow = "1"
thiserror = "1"

View file

@ -11,7 +11,7 @@ use sequoia_openpgp::Cert;
use openpgp_card::card_app::CardApp;
use openpgp_card::KeyType;
use openpgp_card_pcsc::PcscClient;
use openpgp_card_scdc::ScdClient;
// use openpgp_card_scdc::ScdClient;
use openpgp_card_sequoia::CardBase;

View file

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

View file

@ -12,7 +12,7 @@ repository = "https://gitlab.com/hkos/openpgp-card"
documentation = "https://docs.rs/crate/openpgp-card-pcsc"
[dependencies]
openpgp-card = { path = "../openpgp-card" }
openpgp-card = { path = "../openpgp-card", version = "0.0.2" }
pcsc = "2"
anyhow = "1"
log = "0.4"