Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislaw committed Nov 4, 2024
1 parent 2d454a7 commit bf95be2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions docs/sphinx/source/strictdoc_01_user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/source/strictdoc_04_release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/strictdoc-project/strictdoc/blob/main/CHANGELOG.md>`_.

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.

Expand Down
2 changes: 1 addition & 1 deletion docs/strictdoc_04_release_notes.sdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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: >>>
Expand Down
2 changes: 1 addition & 1 deletion strictdoc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from strictdoc.core.environment import SDocRuntimeEnvironment

__version__ = "0.1.0"
__version__ = "0.2.0"


environment = SDocRuntimeEnvironment(__file__)

0 comments on commit bf95be2

Please sign in to comment.