Skip to content

Commit

Permalink
Version 3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adferrand committed Jan 17, 2022
1 parent 745aedb commit 2e18bad
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 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.1 - 17/01/2022
### Modified
* Reimplement the `transip` provider using the new REST v6 API

Expand Down
4 changes: 1 addition & 3 deletions lexicon/providers/hetzner.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,7 @@ def _get_zone_by_domain(self, domain):
:raises KeyError, ValueError: If the response is malformed
:raises urllib.error.HttpError: If request to /zones did not return 200
"""
filter_obj = {
'name': domain
}
filter_obj = {"name": domain}
payload = self._get("/zones", filter_obj)
zones = payload["zones"]
for zone in zones:
Expand Down
6 changes: 4 additions & 2 deletions lexicon/tests/providers/test_transip.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@

import pytest

from lexicon.tests.providers.integration_tests import (IntegrationTestsV2,
vcr_integration_test)
from lexicon.tests.providers.integration_tests import (
IntegrationTestsV2,
vcr_integration_test,
)

FAKE_KEY = """
-----BEGIN RSA PRIVATE KEY-----
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.0"
version = "3.9.1"
description = "Manipulate DNS records on various DNS providers in a standardized/agnostic way"
license = "MIT"
keywords = [
Expand Down

0 comments on commit 2e18bad

Please sign in to comment.