3
0
Fork 0

Compare commits

..

No commits in common. "706ea80926bdcf8462be0bfdd057ef5d9d9442cc" and "e3719dcd1b5012aa80fd50db2c1315b585770904" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View file

@ -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/) 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.6" version = "0.20.5"
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): def get_setting(self, session, name, **kwargs):
""" """
Get a :term:`config setting` value from the DB. Get a :term:`config setting` value from the DB.