From a9f47e5680a8b7cf1af342d884dba8e10dadf5f6 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Fri, 11 Aug 2023 15:31:37 -0700 Subject: [PATCH] add New Tools as a valid changelog header and add to default template --- docs/changelog.txt | 6 ++++-- docs/sphinx_extensions/dfhack/changelog.py | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/changelog.txt b/docs/changelog.txt index 45d0e4d2d..617de1e96 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -24,7 +24,7 @@ changelog.txt uses a syntax similar to RST, with a few special sequences: Template for new versions: -# Future +## New Tools ## New Features @@ -35,7 +35,6 @@ Template for new versions: ## Documentation ## API -- `RemoteFortressReader`: add a ``force_reload`` option to the GetBlockList RPC API to return blocks regardless of whether they have changed since the last request ## Internals @@ -54,6 +53,8 @@ Template for new versions: # Future +## New Tools + ## New Features ## Fixes @@ -67,6 +68,7 @@ Template for new versions: ## API - ``Items::getValue()``: remove ``caravan_buying`` parameter since the identity of the selling party doesn't actually affect the item value +- `RemoteFortressReader`: add a ``force_reload`` option to the GetBlockList RPC API to return blocks regardless of whether they have changed since the last request ## Internals diff --git a/docs/sphinx_extensions/dfhack/changelog.py b/docs/sphinx_extensions/dfhack/changelog.py index cc309e425..a981bf984 100644 --- a/docs/sphinx_extensions/dfhack/changelog.py +++ b/docs/sphinx_extensions/dfhack/changelog.py @@ -16,6 +16,7 @@ CHANGELOG_PATHS = ( CHANGELOG_PATHS = (os.path.join(DFHACK_ROOT, p) for p in CHANGELOG_PATHS) CHANGELOG_SECTIONS = [ + 'New Tools', 'New Plugins', # deprecated 'New Scripts', # deprecated 'New Tweaks', # deprecated