bump: version 0.7.1 → 0.8.0

This commit is contained in:
Lance Edgar 2025-12-15 17:05:39 -06:00
parent c7c86e6e86
commit 572467d53e
2 changed files with 43 additions and 1 deletions

View file

@ -1,3 +1,45 @@
## v0.8.0 (2025-12-15)
### Feat
- drop timezone, assume UTC for all datetime values in DB
### Fix
- define `get_row_parent()` for OrderView
- fix 'duplicate-code' for pylint
- consolidate some duplicated code
- bump minimum version for wuttaweb dependency
- fix 'abstract-method' for pylint
- fix 'arguments-differ' for pylint
- fix 'attribute-defined-outside-init' for pylint
- fix 'broad-exception-caught' for pylint
- fix 'consider-using-dict-comprehension' for pylint
- fix 'consider-using-f-string' for pylint
- fix 'consider-using-set-comprehension' for pylint
- fix 'empty-docstring' for pylint
- fix 'implicit-str-concat' for pylint
- fix 'inconsistent-return-statements' for pylint
- fix 'invalid-name' for pylint
- fix 'missing-class-docstring' and 'missing-function-docstring' for pylint
- fix 'no-else-return' for pylint
- fix 'no-member' for pylint
- fix 'no-self-argument' for pylint
- fix 'redefined-outer-name' for pylint
- fix 'singleton-comparison' for pylint
- fix 'too-few-public-methods' for pylint
- fix 'too-many-branches' for pylint
- fix 'too-many-lines' for pylint
- fix 'too-many-locals' for pylint
- fix 'too-many-arguments' for pylint
- fix 'too-many-public-methods' for pylint
- fix 'unnecessary-lambda-assignment' for pylint
- fix 'unused-argument' for pylint
- fix 'unused-import' for pylint
- fix 'unused-variable' for pylint
- fix 'wildcard-import' and 'unused-wildcard-import' for pylint
- format all code with black
## v0.7.1 (2025-07-06)
### Fix