3
0
Fork 0

Compare commits

...

2 commits

3 changed files with 8 additions and 2 deletions

View file

@ -5,6 +5,12 @@ 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/) 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). 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) ## v0.20.5 (2025-02-19)
### Fix ### Fix

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "WuttJamaican" name = "WuttJamaican"
version = "0.20.5" version = "0.20.6"
description = "Base package for Wutta Framework" description = "Base package for Wutta Framework"
readme = "README.md" readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}] authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]

View file

@ -586,7 +586,7 @@ class AppHandler:
return short_session(**kwargs) return short_session(**kwargs)
def get_setting(self, session, name, **kwargs): def get_setting(self, session, name):
""" """
Get a :term:`config setting` value from the DB. Get a :term:`config setting` value from the DB.