diff --git a/CHANGELOG.md b/CHANGELOG.md index 648dd7b..d8db8ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +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.24.1 (2025-10-29) - -### Fix - -- exclude user password from continuum versioning -- remove customization for Upgrade.uuid column - ## v0.24.0 (2025-10-19) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 7f9906b..c53e6c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttJamaican" -version = "0.24.1" +version = "0.24.0" description = "Base package for Wutta Framework" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}] diff --git a/src/wuttjamaican/db/model/auth.py b/src/wuttjamaican/db/model/auth.py index 5bb4c45..580e669 100644 --- a/src/wuttjamaican/db/model/auth.py +++ b/src/wuttjamaican/db/model/auth.py @@ -181,7 +181,7 @@ class User(Base): # pylint: disable=too-few-public-methods """ __tablename__ = "user" - __versioned__ = {"exclude": ["password"]} + __versioned__ = {} uuid = uuid_column()