Skip to content

Commit

Permalink
🔖 version 1.2.1 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcaurele committed Oct 2, 2023
1 parent acbd1fd commit a2324cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gandi_tf/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def fetch_records(domain):
def fetch_domains_list(organization_id):
"""
Fetch domains of the API key account, optionally filtered by the given
organiyation id.
organization id.
"""
payload = {"per_page": 1, "sort_by": "fqdn", "nameserver": "livedns"}
if organization_id is not None:
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gandi-2-terraform"
version = "1.2.0"
version = "1.2.1"
description = "CLI to read Gandi.net live DNS records and generate corresponding TF gandi_livedns_record resources"
readme = 'README.md'
license = "MIT"
Expand Down Expand Up @@ -44,9 +44,6 @@ ruff = "^0.0.291"
target-version = ["py38", "py39", "py310", "py311"]
line-length = 119

[tool.flake8]
max-line-length = 119

[tool.pylint]
max-line-length = 119

Expand Down
2 changes: 1 addition & 1 deletion tests/test_gandi_tf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

def test_version():
"""Test version number"""
assert __version__ == "1.2.0"
assert __version__ == "1.2.1"

0 comments on commit a2324cf

Please sign in to comment.