@ -13,6 +13,11 @@ 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]
### Added
- Wildcard certificates are now supported. In the file name, the `*` is replaced by `_`.
## [0.6.1] - 2019-09-13
### Fixed
@ -300,7 +300,7 @@ impl Certificate {
match &self.name {
Some(n) => n.to_string(),
None => self.domains.first().unwrap().dns.to_owned(),
}
}.replace("*", "_")
pub fn get_crt_name_format(&self) -> String {