Compare commits

...

5 commits

Author SHA1 Message Date
74899ffdda bump: version 0.3.3 → 0.3.4 2025-09-20 14:35:00 -05:00
c582e2827c fix: fix config extension entry point
per upstream changes
2025-09-20 14:34:45 -05:00
Lance Edgar
f5978cc66d docs: update project links, kallithea -> forgejo 2024-09-14 12:56:39 -05:00
Lance Edgar
b2113bcd88 docs: use markdown for readme file 2024-09-13 18:34:46 -05:00
Lance Edgar
860355f8af fix: avoid deprecated base class for config extension 2024-08-16 10:12:47 -05:00
5 changed files with 25 additions and 21 deletions

View file

@ -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

11
README.md Normal file
View file

@ -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.

View file

@ -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/

View file

@ -6,9 +6,9 @@ build-backend = "hatchling.build"
[project]
name = "rattail-mailchimp"
version = "0.3.3"
version = "0.3.4"
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 = [
@ -30,7 +30,7 @@ dependencies = [
]
[project.entry-points."rattail.config.extensions"]
[project.entry-points."wutta.config.extensions"]
rattail_mailchimp = "rattail_mailchimp.config:MailchimpConfigExtension"
@ -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]

View file

@ -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
"""