diff --git a/CHANGELOG.md b/CHANGELOG.md index 032f33c..6c4cd6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to Messkit 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.2.2 (2025-09-20) + +### Fix + +- fix config extension entry point +- update model, menu config per wuttaweb + ## v0.2.1 (2024-07-01) ### Fix diff --git a/pyproject.toml b/pyproject.toml index c723e0b..28dbed2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "Messkit" -version = "0.2.1" +version = "0.2.2" description = "Generic-ish Data Utility App" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] @@ -46,7 +46,7 @@ messkit = "messkit.commands:messkit_typer" main = "messkit.web.app:main" -[project.entry-points."rattail.config.extensions"] +[project.entry-points."wutta.config.extensions"] messkit = "messkit.config:MesskitConfig"