From 96eb8f43568fdbfdd699d878a016f6b1320e0053 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 1 Sep 2025 15:42:00 -0500 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.23.0=20=E2=86=92=200.23.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 63 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89a7fc2..ec4be45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,68 @@ All notable changes to wuttaweb 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.23.1 (2025-09-01) + +### Fix + +- fix 'duplicate-code' for pylint +- fix 'no-member' for pylint +- fix 'attribute-defined-outside-init' for pylint +- fix 'arguments-renamed' for pylint +- fix 'arguments-differ' for pylint +- fix 'keyword-arg-before-vararg' for pylint +- fix 'too-many-nested-blocks' for pylint +- fix 'too-many-locals' for pylint +- fix 'consider-using-generator' for pylint +- fix 'missing-function-docstring' and 'missing-module-docstring' for pylint +- fix 'super-init-not-called' for pylint +- fix 'singleton-comparison' for pylint +- fix 'simplifiable-if-expression' for pylint +- fix 'redefined-outer-name' for pylint +- fix 'protected-access' for pylint +- fix 'not-callable' for pylint +- fix 'no-else-raise' for pylint +- fix 'isinstance-second-argument-not-valid-type' for pylint +- fix 'consider-using-set-comprehension' for pylint +- fix 'consider-using-get' for pylint +- fix 'consider-using-dict-items' for pylint +- fix 'consider-using-dict-comprehension' for pylint +- fix 'assignment-from-no-return' for pylint +- fix 'abstract-method' for pylint +- fix 'too-few-public-methods' for pylint +- fix 'too-many-lines' for pylint +- fix 'too-many-arguments' for pylint +- fix 'too-many-public-methods' for pylint +- fix 'too-many-statements' for pylint +- fix 'unidiomatic-typecheck' for pylint +- fix 'unnecessary-comprehension' for pylint +- fix 'unnecessary-lambda' and 'unnecessary-lambda-assignment' for pylint +- fix 'unspecified-encoding' for pylint +- fix 'unused-argument' for pylint +- fix 'use-a-generator' for pylint +- fix 'use-dict-literal' for pylint +- fix 'dangerous-default-value' for pylint +- fix 'wildcard-import' and 'unused-wildcard-import' for pylint +- fix 'wrong-import-order' for pylint +- fix 'import-outside-toplevel' for pylint +- fix 'implicit-str-concat' for pylint +- fix 'deprecated-method' for pylint +- fix 'cyclic-import' for pylint +- fix 'bare-except' and 'broad-exception-caught' for pylint +- fix 'invalid-name' for pylint +- fix 'anomalous-backslash-in-string' for pylint +- bump version requirement for wuttjamaican +- fix 'unused-variable' for pylint +- fix 'unused-import' for pylint +- fix 'redefined-argument-from-local' for pylint +- fix 'empty-docstring' for pylint +- fix 'no-else-return' for pylint +- fix 'too-many-branches' for pylint +- fix 'too-many-return-statements' for pylint +- fix 'too-many-instance-attributes' for pylint +- fix 'inconsistent-return-statements' for pylint +- format all code with black + ## v0.23.0 (2025-08-09) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 980cef7..def62ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttaWeb" -version = "0.23.0" +version = "0.23.1" description = "Web App for Wutta Framework" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]