Skip to content

Commit

Permalink
Version 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adferrand committed May 15, 2020
1 parent 55de223 commit 24193d6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## master - CURRENT

## 3.3.0 - 15/05/2020
### Added
* Set the User-Agent comment for Let'sEncrypt statistics

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
6 changes: 5 additions & 1 deletion src/dnsrobocert/core/certbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 24193d6

Please sign in to comment.