diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 232b49f9..59cd1d7b 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,13 @@ # Release Notes +## Version 3.1.3 + +Minor Tweak + +| Module | Feature | Brief summary | Pull request | Contributor | +| ------ | -------------------- | ----------------------------------- | --------------------------------------------------------------- | --------------------------------------------- | +| `all` | linter and formatter | update linter and formatter version | [#76](https://github.com/tier4/driving_log_replayer_v2/pull/76) | [hayato-m126](https://github.com/hayato-m126) | + ## Version 3.1.2 Minor Tweak diff --git a/driving_log_replayer_v2/CHANGELOG.rst b/driving_log_replayer_v2/CHANGELOG.rst index f66fb562..8affb735 100644 --- a/driving_log_replayer_v2/CHANGELOG.rst +++ b/driving_log_replayer_v2/CHANGELOG.rst @@ -2,6 +2,15 @@ Changelog for package driving_log_replayer ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Forthcoming +----------- +* feat: update github actions (`#76 `_) + * feat: update github actions + * fix: remove Removed Rules + * chore: noqa PLC0206 + --------- +* Contributors: Hayato Mizushima + 3.1.2 (2024-12-27) ------------------ * fix(traffic_light): enable to calculate correct distance from ego to traffic light (`#74 `_) diff --git a/driving_log_replayer_v2_analyzer/CHANGELOG.rst b/driving_log_replayer_v2_analyzer/CHANGELOG.rst index a1e37ef2..935e9193 100644 --- a/driving_log_replayer_v2_analyzer/CHANGELOG.rst +++ b/driving_log_replayer_v2_analyzer/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package driving_log_replayer_v2_analyzer ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Forthcoming +----------- + 3.1.2 (2024-12-27) ------------------ diff --git a/driving_log_replayer_v2_msgs/CHANGELOG.rst b/driving_log_replayer_v2_msgs/CHANGELOG.rst index e675d82c..34d554d6 100644 --- a/driving_log_replayer_v2_msgs/CHANGELOG.rst +++ b/driving_log_replayer_v2_msgs/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package driving_log_replayer_v2_msgs ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Forthcoming +----------- + 3.1.2 (2024-12-27) ------------------ diff --git a/pyproject.toml b/pyproject.toml index 147f8d04..48bc0ed0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "driving-log-replayer-v2" -version = "3.1.2" +version = "3.1.3" authors = [ { name = "Hayato Mizushima", email = "hayato.mizushima@tier4.jp" }, { name = "Kotaro Uetake", email = "kotaro.uetake@tier4.jp" }, @@ -46,7 +46,7 @@ build-backend = "hatchling.build" # https://github.com/astral-sh/uv/issues/7703 constraint-dependencies = ["kaleido!=0.2.1.post1"] dev-dependencies = [ - "ruff==0.7.0", + "ruff==0.8.0", "pytest>=8.1.1", ]