diff --git a/CHANGELOG.md b/CHANGELOG.md
index b03ed6e..bd51347 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,13 @@ Find changes for the upcoming release in the project's [changelog.d directory](h
+
+## 0.3.2 (2024-12-02)
+
+### Bug fixes
+
+- Require Jira ticket references start at a word boundary so that, for example, `LDM-1234` is not detected as ticket `DM-1234`.
+
## 0.3.1 (2024-10-10)
diff --git a/changelog.d/20241202_143730_rra_DM_47672.md b/changelog.d/20241202_143730_rra_DM_47672.md
deleted file mode 100644
index 62e6d43..0000000
--- a/changelog.d/20241202_143730_rra_DM_47672.md
+++ /dev/null
@@ -1,3 +0,0 @@
-### Bug fixes
-
-- Require Jira ticket references start at a word boundary so that, for example, `LDM-1234` is not detected as ticket `DM-1234`.
diff --git a/pyproject.toml b/pyproject.toml
index 783bb02..8956a3d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -89,22 +89,12 @@ asyncio_mode = "strict"
# listed in python_files.
python_files = ["tests/*.py", "tests/*/*.py"]
-# The rule used with Ruff configuration is to disable every lint that has
-# legitimate exceptions that are not dodgy code, rather than cluttering code
-# with noqa markers. This is therefore a reiatively relaxed configuration that
-# errs on the side of disabling legitimate lints.
-#
-# Reference for settings: https://beta.ruff.rs/docs/settings/
-# Reference for rules: https://beta.ruff.rs/docs/rules/
+# Use the generic Ruff configuration in ruff.toml and extend it with only
+# project-specific settings. Add a [tool.ruff.lint.extend-per-file-ignores]
+# section for project-specific ignore rules.
[tool.ruff]
extend = "ruff-shared.toml"
-[tool.ruff.lint]
-ignore = [
- # Temporary bug workarounds.
- "S113", # https://github.com/astral-sh/ruff/issues/12210
-]
-
[tool.ruff.lint.isort]
known-first-party = ["unfurlbot", "tests"]
split-on-trailing-comma = false