From 9f32a0817e2b62514e133a658e7dbf00c9793aa3 Mon Sep 17 00:00:00 2001 From: Stanislav Pankevich Date: Sat, 26 Oct 2024 12:40:49 +0200 Subject: [PATCH] Bump version to 0.0.60 --- .../source/strictdoc_03_development_plan.rst | 1 - .../sphinx/source/strictdoc_04_release_notes.rst | 11 +++++++++++ docs/strictdoc_04_release_notes.sdoc | 16 ++++++++++++++++ strictdoc/__init__.py | 2 +- 4 files changed, 28 insertions(+), 2 deletions(-) diff --git a/docs/sphinx/source/strictdoc_03_development_plan.rst b/docs/sphinx/source/strictdoc_03_development_plan.rst index 214eff307..df78668f7 100644 --- a/docs/sphinx/source/strictdoc_03_development_plan.rst +++ b/docs/sphinx/source/strictdoc_03_development_plan.rst @@ -96,7 +96,6 @@ The following diagram contains the work items at the epic and single task levels :class: image :width: 100% - Verification ============ diff --git a/docs/sphinx/source/strictdoc_04_release_notes.rst b/docs/sphinx/source/strictdoc_04_release_notes.rst index 78e3a583a..ac55b8f5a 100644 --- a/docs/sphinx/source/strictdoc_04_release_notes.rst +++ b/docs/sphinx/source/strictdoc_04_release_notes.rst @@ -3,6 +3,17 @@ $$$$$$$$$$$$$ 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 `_. +0.0.60 (2024-10-26) +=================== + +This is a bugfix release with several fixes: + +- Web UI: Add 'TAG' as a supported fieldtype for requirement nodes. Previously, the UI interface would not open an element with a TAG-based field, raising a NotImplementedError. [@mplum] + +- Search Screen: Prevent query failure when node is missing requested field [@mplum] + +- Project Statistics: Fix generated search URLs for project statistics [@haxtibal] + 0.0.59 (2024-10-13) =================== diff --git a/docs/strictdoc_04_release_notes.sdoc b/docs/strictdoc_04_release_notes.sdoc index b6e321b0b..1b0f610da 100644 --- a/docs/strictdoc_04_release_notes.sdoc +++ b/docs/strictdoc_04_release_notes.sdoc @@ -6,6 +6,22 @@ STATEMENT: >>> 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 `_. <<< +[SECTION] +TITLE: 0.0.60 (2024-10-26) + +[TEXT] +STATEMENT: >>> +This is a bugfix release with several fixes: + +- Web UI: Add 'TAG' as a supported fieldtype for requirement nodes. Previously, the UI interface would not open an element with a TAG-based field, raising a NotImplementedError. [@mplum] + +- Search Screen: Prevent query failure when node is missing requested field [@mplum] + +- Project Statistics: Fix generated search URLs for project statistics [@haxtibal] +<<< + +[/SECTION] + [SECTION] TITLE: 0.0.59 (2024-10-13) diff --git a/strictdoc/__init__.py b/strictdoc/__init__.py index e3992e4a3..3c2e51882 100644 --- a/strictdoc/__init__.py +++ b/strictdoc/__init__.py @@ -1,6 +1,6 @@ from strictdoc.core.environment import SDocRuntimeEnvironment -__version__ = "0.0.59" +__version__ = "0.0.60" environment = SDocRuntimeEnvironment(__file__)