bump: version 0.3.0 → 0.4.0

This commit is contained in:
Lance Edgar 2025-12-31 19:13:35 -06:00
parent 2ca7842e4f
commit ead51bcd5a
2 changed files with 14 additions and 2 deletions

View file

@ -5,6 +5,18 @@ All notable changes to WuttaSync 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.4.0 (2025-12-31)
### Feat
- add support for `--comment` CLI param, to set versioning comment
- add support for `--runas` CLI param, to set versioning authorship
### Fix
- make pylint happy
- accept either `--recip` or `--recips` param for import commands
## v0.3.0 (2025-12-20) ## v0.3.0 (2025-12-20)
### Feat ### Feat

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "WuttaSync" name = "WuttaSync"
version = "0.3.0" version = "0.4.0"
description = "Wutta Framework for data import/export and real-time sync" description = "Wutta Framework for data import/export and real-time sync"
readme = "README.md" readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}] authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
@ -29,7 +29,7 @@ dependencies = [
"humanize", "humanize",
"makefun", "makefun",
"SQLAlchemy-Utils", "SQLAlchemy-Utils",
"WuttJamaican[db]>=0.27.0", "WuttJamaican[db]>=0.28.1",
] ]