diff --git a/CHANGELOG.md b/CHANGELOG.md index f4524a7..e4223ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.0.2 - 2023-10-19 - Cya ApiToken, Welcome PAT + +- Use Personal Access Token (PAT) authentication instead of ApiToken (deprecated by Gandhi) + ## v0.0.1 - 2022-01-09 - Moving #### Nothworthy Changes diff --git a/README.md b/README.md index fd4792b..b508b1a 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,15 @@ octodns-gandi==0.0.1 providers: gandi: class: octodns_gandi.GandiProvider - # Your API key (required) + # Your personal access token (required) token: env/GANDI_TOKEN ``` +Note: The minimum permissions your PAT must have are + +* See and renew domain names +* Manage domain name technical configurations + ### Support Information #### Records diff --git a/octodns_gandi/__init__.py b/octodns_gandi/__init__.py index 3e95661..8de51de 100644 --- a/octodns_gandi/__init__.py +++ b/octodns_gandi/__init__.py @@ -12,7 +12,7 @@ from octodns.provider.base import BaseProvider from octodns.record import Record -__VERSION__ = '0.0.1' +__VERSION__ = '0.0.2' class GandiClientException(ProviderException):