diff --git a/CHANGELOG.md b/CHANGELOG.md index 03c1181..c4672b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,16 @@ ## main +## 1.0.0 + FEATURES: - The plugin now supports the setting of `client_dns_resolver` to override the DNS resolver used for DNSimple API endpoints. This is useful when running CoreDNS as the DNS resolver for the host. Format is `ADDRESS:PORT`. (#25) +ENHANCEMENTS: + +- Enforce the presence of the `access_token` and `account_id` parameters in the configuration whether supplied by environment variables or directly in config, we raise an error if they are found missing. (#24) + ## 1.0.0-rc.1 FEATURES: diff --git a/version.go b/version.go index 573e89e..8325cb1 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package dnsimple const ( - PluginVersion = "1.0.0-rc.1" + PluginVersion = "1.0.0" )