From 24193d6f194f4d52cb8bf9dc594e7a667b32f82c Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Fri, 15 May 2020 23:20:11 +0200 Subject: [PATCH] Version 3.3.0 --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- src/dnsrobocert/core/certbot.py | 6 +++++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01e501ce..7c477e98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## master - CURRENT + +## 3.3.0 - 15/05/2020 ### Added * Set the User-Agent comment for Let'sEncrypt statistics diff --git a/pyproject.toml b/pyproject.toml index 84d38986..09eea0be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "dnsrobocert" -version = "3.2.0" +version = "3.3.0" description = "A tool to manage your DNS-challenged TLS certificates" license = "MIT" keywords = [ diff --git a/src/dnsrobocert/core/certbot.py b/src/dnsrobocert/core/certbot.py index ec31d4f7..eec32863 100644 --- a/src/dnsrobocert/core/certbot.py +++ b/src/dnsrobocert/core/certbot.py @@ -14,7 +14,11 @@ LOGGER = logging.getLogger(__name__) coloredlogs.install(logger=LOGGER) -_DEFAULT_FLAGS = ["-n", "--user-agent-comment", "DNSroboCert/{0}".format(dnsrobocert.__version__)] +_DEFAULT_FLAGS = [ + "-n", + "--user-agent-comment", + "DNSroboCert/{0}".format(dnsrobocert.__version__), +] def account(config_path: str, directory_path: str):