From fbaed03d2a81dd61c87417792b477c6db9679c11 Mon Sep 17 00:00:00 2001 From: Dmitry Volodin Date: Fri, 17 Nov 2023 16:21:24 +0100 Subject: [PATCH] 0.2.0 --- CHANGELOG.md | 7 ++++--- src/gufo/acme/__init__.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c0c080..2aca52f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,17 +10,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 To see unreleased changes, please see the [CHANGELOG on the master branch](https://github.com/gufolabs/gufo_acme/blob/master/CHANGELOG.md) guide. -## [Unreleased] +## 0.2.0 - 2023-11-17 ## Added * DavAcmeClient: http-01 fulfillment using WebDAV * PowerDnsAcmeClient: dns-01 fulfillment using PowerDNS. -* WEBAcmeClient: http-01 fulfillment using static files. +* WebAcmeClient: http-01 fulfillment using static files. ## Changed -* AcmeClient has been moved into `gufo.acme.clients.base`. +* ACMEClient has been moved into `gufo.acme.clients.base`. +* ACMEClient, types, and exceptions have been renamed to snake-case. ## Fixed diff --git a/src/gufo/acme/__init__.py b/src/gufo/acme/__init__.py index 141ab50..92395f8 100644 --- a/src/gufo/acme/__init__.py +++ b/src/gufo/acme/__init__.py @@ -17,4 +17,4 @@ * [log][gufo.acme.log] - Logging utilities. * [types][gufo.acme.types] - Package public types. """ -__version__ = "0.1.1" +__version__ = "0.2.0"