diff --git a/CHANGELOG.md b/CHANGELOG.md index 307ba84..0a92c14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,6 @@ All notable changes to WuttJamaican 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.20.6 (2025-06-29) - -### Fix - -- remove unused kwargs from `app.get_setting()` signature - ## v0.20.5 (2025-02-19) ### Fix diff --git a/pyproject.toml b/pyproject.toml index c625694..fe842f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttJamaican" -version = "0.20.6" +version = "0.20.5" description = "Base package for Wutta Framework" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}] diff --git a/src/wuttjamaican/app.py b/src/wuttjamaican/app.py index eeeeff2..db044b0 100644 --- a/src/wuttjamaican/app.py +++ b/src/wuttjamaican/app.py @@ -586,7 +586,7 @@ class AppHandler: return short_session(**kwargs) - def get_setting(self, session, name): + def get_setting(self, session, name, **kwargs): """ Get a :term:`config setting` value from the DB.