Skip to content

Commit

Permalink
Version 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adferrand committed Nov 15, 2020
1 parent 0113663 commit 89d51a3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 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.5.1 - 15/11/2020
## Added
* Add the Joker.com provider

Expand Down
8 changes: 4 additions & 4 deletions lexicon/tests/providers/test_joker.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Integration tests for Joker.com provider"""
from unittest import TestCase
import re
from unittest import TestCase

from lexicon.tests.providers.integration_tests import IntegrationTestsV2

Expand All @@ -18,8 +18,8 @@ def _filter_query_parameters(self):
]

def _filter_response(self, response):
body = response['body']['string'].decode("utf-8")
body = re.sub(r'Auth-Sid: \w+\n', 'Auth-Sid: DUMMY_AUTH_SID\n', body)
response['body']['string'] = body.encode("utf-8")
body = response["body"]["string"].decode("utf-8")
body = re.sub(r"Auth-Sid: \w+\n", "Auth-Sid: DUMMY_AUTH_SID\n", body)
response["body"]["string"] = body.encode("utf-8")

return response
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "dns-lexicon"
version = "3.5.0"
version = "3.5.1"
description = "Manipulate DNS records on various DNS providers in a standardized/agnostic way"
license = "MIT"
keywords = [
Expand Down

0 comments on commit 89d51a3

Please sign in to comment.