bump: version 0.8.0 → 0.9.0

This commit is contained in:
Lance Edgar 2026-03-10 10:59:27 -05:00
parent 3bacb884dc
commit 8baf140c70
2 changed files with 29 additions and 2 deletions

View file

@ -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/) 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.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) ## v0.8.0 (2026-03-04)
### Feat ### Feat

View file

@ -5,7 +5,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "WuttaFarm" name = "WuttaFarm"
version = "0.8.0" version = "0.9.0"
description = "Web app to integrate with and extend farmOS" description = "Web app to integrate with and extend farmOS"
readme = "README.md" readme = "README.md"
authors = [ authors = [
@ -34,7 +34,7 @@ dependencies = [
"pyramid_exclog", "pyramid_exclog",
"uvicorn[standard]", "uvicorn[standard]",
"WuttaSync", "WuttaSync",
"WuttaWeb[continuum]>=0.29.0", "WuttaWeb[continuum]>=0.29.2",
] ]