From 860355f8af00600334bdcfea24bf5b0af5bb9ec4 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 16 Aug 2024 10:12:47 -0500 Subject: [PATCH 1/5] fix: avoid deprecated base class for config extension --- rattail_mailchimp/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rattail_mailchimp/config.py b/rattail_mailchimp/config.py index 9005b78..4bad837 100644 --- a/rattail_mailchimp/config.py +++ b/rattail_mailchimp/config.py @@ -24,10 +24,10 @@ Config extensions for rattail-mailchimp """ -from rattail.config import ConfigExtension +from wuttjamaican.conf import WuttaConfigExtension -class MailchimpConfigExtension(ConfigExtension): +class MailchimpConfigExtension(WuttaConfigExtension): """ Config extension for rattail-mailchimp """ From b2113bcd88031fbae67dc5d5a48401e6ab90a9ca Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 13 Sep 2024 18:34:46 -0500 Subject: [PATCH 2/5] docs: use markdown for readme file --- README.md | 11 +++++++++++ README.rst | 14 -------------- pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 15 deletions(-) create mode 100644 README.md delete mode 100644 README.rst diff --git a/README.md b/README.md new file mode 100644 index 0000000..5b17139 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ + +# rattail_mailchimp + +Rattail is a retail software framework, released under the GNU General +Public License. + +This package contains software interfaces for the +[MailChimp](https://mailchimp.com/) system. + +Please see the [Rattail Project](https://rattailproject.org/) for more +information. diff --git a/README.rst b/README.rst deleted file mode 100644 index 25dc9c3..0000000 --- a/README.rst +++ /dev/null @@ -1,14 +0,0 @@ - -rattail_mailchimp -================= - -Rattail is a retail software framework, released under the GNU General -Public License. - -This package contains software interfaces for the `MailChimp`_ system. - -.. _`MailChimp`: https://mailchimp.com/ - -Please see the `Rattail Project`_ for more information. - -.. _`Rattail Project`: https://rattailproject.org/ diff --git a/pyproject.toml b/pyproject.toml index cd0bf7e..335d26c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "hatchling.build" name = "rattail-mailchimp" version = "0.3.3" description = "Rattail Software Interfaces for MailChimp" -readme = "README.rst" +readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] license = {text = "GNU GPL v3+"} classifiers = [ From f5978cc66d7003a000681e0d9d578a5656787155 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 14 Sep 2024 12:56:39 -0500 Subject: [PATCH 3/5] docs: update project links, kallithea -> forgejo --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 335d26c..66b836b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,8 +44,8 @@ rattail_mailchimp = "rattail_mailchimp.emails" [project.urls] Homepage = "https://rattailproject.org" -Repository = "https://kallithea.rattailproject.org/rattail-project/rattail-mailchimp" -Changelog = "https://kallithea.rattailproject.org/rattail-project/rattail-mailchimp/files/master/CHANGELOG.md" +Repository = "https://forgejo.wuttaproject.org/rattail/rattail-mailchimp" +Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-mailchimp/src/branch/master/CHANGELOG.md" [tool.commitizen] From c582e2827cf00e322646d0292ce788a08428e5f4 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 20 Sep 2025 14:34:45 -0500 Subject: [PATCH 4/5] fix: fix config extension entry point per upstream changes --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 66b836b..6871ec1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ ] -[project.entry-points."rattail.config.extensions"] +[project.entry-points."wutta.config.extensions"] rattail_mailchimp = "rattail_mailchimp.config:MailchimpConfigExtension" From 74899ffddab0ac91330486a5d9548b74d26a7c33 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 20 Sep 2025 14:35:00 -0500 Subject: [PATCH 5/5] =?UTF-8?q?bump:=20version=200.3.3=20=E2=86=92=200.3.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9009e56..ea9310a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to rattail-mailchimp will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v0.3.4 (2025-09-20) + +### Fix + +- fix config extension entry point +- avoid deprecated base class for config extension + ## v0.3.3 (2024-07-05) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 6871ec1..a347ad6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "rattail-mailchimp" -version = "0.3.3" +version = "0.3.4" description = "Rattail Software Interfaces for MailChimp" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]