Skip to content

Commit

Permalink
Version 3.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adferrand committed Jun 21, 2022
1 parent 7366444 commit 2236025
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 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.11.3 - 21/06/2022
### Added
* Add `porkbun` provider (#1283)

Expand Down
4 changes: 3 additions & 1 deletion lexicon/providers/porkbun.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import json
import logging

import requests

from lexicon.exceptions import AuthenticationError
from lexicon.providers.base import Provider as BaseProvider
import json

LOGGER = logging.getLogger(__name__)

Expand Down
3 changes: 2 additions & 1 deletion lexicon/tests/providers/test_porkbun.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Test for one implementation of the interface
from lexicon.tests.providers.integration_tests import IntegrationTestsV2
from unittest import TestCase

from lexicon.tests.providers.integration_tests import IntegrationTestsV2


# Hook into testing framework by inheriting unittest.TestCase and reuse
# the tests which *each and every* implementation of the interface must
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.11.2"
version = "3.11.3"
description = "Manipulate DNS records on various DNS providers in a standardized/agnostic way"
license = "MIT"
keywords = [
Expand Down

0 comments on commit 2236025

Please sign in to comment.