diff --git a/CHANGELOG.md b/CHANGELOG.md index f1eedfc..794220d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,33 @@ All notable changes to WuttaFarm 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.9.0 (2026-03-10) + +### Feat + +- add schema, edit/sync support for Seeding Logs +- add schema, edit/sync support for Equipment Assets +- add schema, edit/sync support for Equipment Types +- add schema, edit/sync support for Water Assets +- add edit/sync support for Material Types + Material Quantities +- add edit/sync support for Material Types +- add edit/sync support for Log Quantities +- add edit/sync support for `Log.groups` +- add edit/sync support for `Log.locations` +- expose Assets field when editing a Log record +- add edit/sync support for Plant Seasons +- add edit/sync support for asset parents + +### Fix + +- avoid error when material type is unknown +- improve behavior when deleting a Standard Quantity +- cleanup grid views for All, Standard Quantities +- add ordinal for sorting Measures +- expose `is_location` and `is_fixed` for editing on Animal Asset +- allow "N/A" option for animal sex +- fix Assets column for All Logs subgrid when viewing asset + ## v0.8.0 (2026-03-04) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 1bb1dda..51737ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "WuttaFarm" -version = "0.8.0" +version = "0.9.0" description = "Web app to integrate with and extend farmOS" readme = "README.md" authors = [ @@ -34,7 +34,7 @@ dependencies = [ "pyramid_exclog", "uvicorn[standard]", "WuttaSync", - "WuttaWeb[continuum]>=0.29.0", + "WuttaWeb[continuum]>=0.29.2", ]