diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bb0853..d8c5635 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ All notable changes to wuttaweb 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.6.0 (2024-08-13) + +### Feat + +- add basic Roles view +- add Users view; improve CRUD master for SQLAlchemy models +- add People view; improve CRUD master for SQLAlchemy models +- add basic support for SQLAlchemy model in master view +- add basic Create support for CRUD master view +- add basic Delete support for CRUD master view +- add basic Edit support for CRUD master view +- add auto-link (to "View") behavior for grid columns +- add basic support for "view" part of CRUD +- add basic `Grid` class, and /settings master view + +### Fix + +- rename MasterView method to `configure_grid()` +- replace default logo, favicon images +- tweak labels for Web Libraries config + ## v0.5.0 (2024-08-06) ### Feat diff --git a/pyproject.toml b/pyproject.toml index c52ab1c..c3ce9d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttaWeb" -version = "0.5.0" +version = "0.6.0" description = "Web App for Wutta Framework" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] @@ -39,7 +39,7 @@ dependencies = [ "pyramid_tm", "waitress", "WebHelpers2", - "WuttJamaican[db]>=0.10.0", + "WuttJamaican[db]>=0.11.0", "zope.sqlalchemy>=1.5", ]