Skip to content

Commit

Permalink
Version 3.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
adferrand committed Jan 17, 2022
1 parent 920e70f commit d8b26bc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 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.9.2 - 17/01/2022
### Modified
* Fix configuration reference

Expand Down
4 changes: 2 additions & 2 deletions lexicon/providers/transip.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def provider_parser(subparser):
subparser.add_argument(
"--auth-api-key",
help="specify the private key to use for API authentication, in PEM format: can be either "
"the path of the key file (eg. /tmp/key.pem) or the base64 encoded content of this "
"file prefixed by 'base64::' (eg. base64::eyJhbGciOyJ...)",
"the path of the key file (eg. /tmp/key.pem) or the base64 encoded content of this "
"file prefixed by 'base64::' (eg. base64::eyJhbGciOyJ...)",
)
subparser.add_argument(
"--auth-key-is-global",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "dns-lexicon"
version = "3.9.1"
version = "3.9.2"
description = "Manipulate DNS records on various DNS providers in a standardized/agnostic way"
license = "MIT"
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion utils/generate_provider_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main():
* ``{action.dest}`` {action.help.capitalize().replace("`", "'")}
"""
)

if parser.description:
provider_content.append(
f"""
Expand Down

0 comments on commit d8b26bc

Please sign in to comment.