bump: version 0.2.1 → 0.3.0
This commit is contained in:
parent
4f80085254
commit
8c5918b9fb
2 changed files with 22 additions and 3 deletions
19
CHANGELOG.md
19
CHANGELOG.md
|
|
@ -5,6 +5,25 @@ 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/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## v0.3.0 (2025-12-20)
|
||||
|
||||
### Feat
|
||||
|
||||
- add `warnings` mode for import/export handlers, commands
|
||||
- add the `import-versions` command, handler logic
|
||||
|
||||
### Fix
|
||||
|
||||
- run all models when none specified, for import/export commands
|
||||
- allow passing just `key` to ImportCommandHandler
|
||||
- add `--comment` param for `import-versions` command
|
||||
- add basic data type coercion for CSV -> SQLAlchemy import
|
||||
- refactor some more for tests + pylint
|
||||
- refactor per pylint; add to tox
|
||||
- format all code with black
|
||||
- tweak logging when deleting object
|
||||
- add logging when deleting target object
|
||||
|
||||
## v0.2.1 (2025-06-29)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "WuttaSync"
|
||||
version = "0.2.1"
|
||||
version = "0.3.0"
|
||||
description = "Wutta Framework for data import/export and real-time sync"
|
||||
readme = "README.md"
|
||||
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
||||
|
|
@ -29,13 +29,13 @@ dependencies = [
|
|||
"humanize",
|
||||
"makefun",
|
||||
"SQLAlchemy-Utils",
|
||||
"WuttJamaican[db]>=0.16.2",
|
||||
"WuttJamaican[db]>=0.27.0",
|
||||
]
|
||||
|
||||
|
||||
[project.optional-dependencies]
|
||||
docs = ["Sphinx", "enum-tools[sphinx]", "furo", "sphinxcontrib-programoutput"]
|
||||
tests = ["pylint", "pytest", "pytest-cov", "tox", "Wutta-Continuum"]
|
||||
tests = ["pylint", "pytest", "pytest-cov", "tox", "Wutta-Continuum>=0.3.0"]
|
||||
|
||||
|
||||
[project.entry-points."wutta.app.providers"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue