From 5cb3801be0d2d3a1271d911f7c1b6c82addef276 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Sat, 30 Mar 2019 13:51:57 +0100 Subject: [PATCH] v0.2.1 --- CHANGELOG.md | 8 +++++++- acmed/Cargo.toml | 2 +- acmed/src/main.rs | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6aae164..59da79b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.2.1] - 2019-03-30 + +### Changed +- The bug that prevented from requesting more than two certificates has been fixed. + + +## [0.2.0] - 2019-03-27 ### Added - The `kp_reuse` flag allow to reuse a key pair instead of creating a new one at each renewal. diff --git a/acmed/Cargo.toml b/acmed/Cargo.toml index 92969a1..7b22516 100644 --- a/acmed/Cargo.toml +++ b/acmed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "acmed" -version = "0.3.0-dev" +version = "0.2.1" authors = ["Rodolphe Breard "] edition = "2018" description = "ACME (RFC 8555) client daemon" diff --git a/acmed/src/main.rs b/acmed/src/main.rs index 1fa23f5..ae47cf1 100644 --- a/acmed/src/main.rs +++ b/acmed/src/main.rs @@ -28,7 +28,7 @@ pub const DEFAULT_LOG_LEVEL: LevelFilter = LevelFilter::Warn; fn main() { let matches = App::new("acmed") - .version("0.3.0-dev") + .version("0.2.1") .arg( Arg::with_name("config") .short("c")