From bf95be275e2d051e6e743b070d063ba597cd87d5 Mon Sep 17 00:00:00 2001 From: Stanislav Pankevich Date: Mon, 4 Nov 2024 20:17:49 +0100 Subject: [PATCH] Bump version to 0.2.0 --- docs/sphinx/source/strictdoc_01_user_guide.rst | 12 ++++++++++++ docs/sphinx/source/strictdoc_04_release_notes.rst | 4 ++-- docs/strictdoc_04_release_notes.sdoc | 2 +- strictdoc/__init__.py | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/docs/sphinx/source/strictdoc_01_user_guide.rst b/docs/sphinx/source/strictdoc_01_user_guide.rst index af933c7b5..613863857 100644 --- a/docs/sphinx/source/strictdoc_01_user_guide.rst +++ b/docs/sphinx/source/strictdoc_01_user_guide.rst @@ -2117,6 +2117,18 @@ The ``html_assets_strictdoc_dir`` allows changing the assets folder name: [project] html_assets_strictdoc_dir = "assets" +Path to cache dir +^^^^^^^^^^^^^^^^^ + +StrictDoc uses caching when reading and writing artifacts. By default, all caches are written to the system's temporary directory (``$TMPDIR``). + +The ``cache_dir`` option in the configuration file allows specifying a custom directory, such as ``./output/build``. This setting can help make caching artifacts visible alongside documentation artifacts. + +.. code:: toml + + [project] + cache_dir = "./output/cache" + Path to source root ~~~~~~~~~~~~~~~~~~~ diff --git a/docs/sphinx/source/strictdoc_04_release_notes.rst b/docs/sphinx/source/strictdoc_04_release_notes.rst index 414b181b4..8ec62dc91 100644 --- a/docs/sphinx/source/strictdoc_04_release_notes.rst +++ b/docs/sphinx/source/strictdoc_04_release_notes.rst @@ -3,8 +3,8 @@ $$$$$$$$$$$$$ This document maintains a record of all changes to StrictDoc since November 2023. It serves as a user-friendly version of the changelog, complementing the automatically generated, commit-by-commit changelog available here: `StrictDoc Changelog `_. -Unreleased 0.2.0 (2024-11-XX) -============================= +0.2.0 (2024-11-04) +================== This release introduces several enhancements to the source code processing introduced in release 0.1.0. diff --git a/docs/strictdoc_04_release_notes.sdoc b/docs/strictdoc_04_release_notes.sdoc index ddef34788..b074d8668 100644 --- a/docs/strictdoc_04_release_notes.sdoc +++ b/docs/strictdoc_04_release_notes.sdoc @@ -7,7 +7,7 @@ This document maintains a record of all changes to StrictDoc since November 2023 <<< [SECTION] -TITLE: Unreleased 0.2.0 (2024-11-XX) +TITLE: 0.2.0 (2024-11-04) [TEXT] STATEMENT: >>> diff --git a/strictdoc/__init__.py b/strictdoc/__init__.py index ec4bda81f..0475a4f3c 100644 --- a/strictdoc/__init__.py +++ b/strictdoc/__init__.py @@ -1,6 +1,6 @@ from strictdoc.core.environment import SDocRuntimeEnvironment -__version__ = "0.1.0" +__version__ = "0.2.0" environment = SDocRuntimeEnvironment(__file__)