From e21aeefb9b628c48a3d8c8bcf54c052ccea56e06 Mon Sep 17 00:00:00 2001 From: Stanislav Pankevich Date: Mon, 11 Mar 2024 19:48:52 +0100 Subject: [PATCH] Bump version to 0.0.49 --- docs/strictdoc_04_release_notes.sdoc | 2 +- strictdoc/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/strictdoc_04_release_notes.sdoc b/docs/strictdoc_04_release_notes.sdoc index ae47cafdd..2b5fc5b98 100644 --- a/docs/strictdoc_04_release_notes.sdoc +++ b/docs/strictdoc_04_release_notes.sdoc @@ -6,7 +6,7 @@ This document maintains a record of all changes to StrictDoc since November 2023 [/FREETEXT] [SECTION] -TITLE: Unreleased work +TITLE: 0.0.49 (2024-03-11) [FREETEXT] The web interface code has been extended to allow editing arbitrary nodes. Previously, only editing the REQUIREMENT type was possible. From now on, it is possible to use the web interface to create custom grammar elements and nodes of corresponding grammar element types. diff --git a/strictdoc/__init__.py b/strictdoc/__init__.py index 8c7a868cf..08931be3d 100644 --- a/strictdoc/__init__.py +++ b/strictdoc/__init__.py @@ -1,6 +1,6 @@ from strictdoc.core.environment import SDocRuntimeEnvironment -__version__ = "0.0.49a7" +__version__ = "0.0.49" environment = SDocRuntimeEnvironment(__file__)