Browse Source

v0.2.1

pull/5/head v0.2.1
Rodolphe Breard 6 years ago
parent
commit
5cb3801be0
  1. 8
      CHANGELOG.md
  2. 2
      acmed/Cargo.toml
  3. 2
      acmed/src/main.rs

8
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.

2
acmed/Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "acmed"
version = "0.3.0-dev"
version = "0.2.1"
authors = ["Rodolphe Breard <rodolphe@what.tf>"]
edition = "2018"
description = "ACME (RFC 8555) client daemon"

2
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")

Loading…
Cancel
Save