From 25a2137a0fbbe6f0fd8ccb57ec6749e5050198f5 Mon Sep 17 00:00:00 2001 From: Nick Jackson Date: Tue, 16 Jul 2024 16:51:44 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=206.0.0=20=E2=86=92=206.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93f633562..670097a9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,3 +20,29 @@ Ensure "No Year" does not appear in tags to avoid validation errors. == v0.1.0 == Before December 2023, versions were not tracked and the version string was "0.1.0" + +## v6.0.1 (2024-07-16) + +### Refactor + +- **FCL-176**: explicitly set timezones to UTC +- **FCL-176**: automated fixes for "C4" rules (includes unsafe) +- **FCL-176**: automated fixes for "COM" rules +- **FCL-176**: replace instances of shadowing Python builtins +- **FCL-176**: use bound parameters to pass rule ID +- **FCL-176**: replace runtime assert with exception +- **FCL-176**: add timeout when patching a judgment +- **FCL-176**: disable S105 and S106 for known-safe lines +- **FCL-176**: Move update_legislation_table tests +- **FCL-176**: Manual f-string fix for multi-line string +- **FCL-176**: Automated fixes for "UP" rules +- **FCL-176**: Automated fixes for "I" rules +- **FCL-176**: Solve cases of control variables not being used +- **FCL-176**: Refactor some Exception handling +- **FCL-176**: Automated fixes for "B" rules +- **FCL-176**: modify return type of get_matched_rule +- **FCL-176**: replace equality operators for True/False/None comparisons + +## v4.0.0 (2023-12-12) + +## v3.0.0 (2023-12-06) diff --git a/pyproject.toml b/pyproject.toml index 10efa6536..a40d71671 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -version="6.0.0" +version="6.0.1" requires-python = ">=3.12" [tool.pytest.ini_options]