diff --git a/.version b/.version index d33c3a212..afaf360d3 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.12.0 \ No newline at end of file +1.0.0 \ No newline at end of file diff --git a/scons/changelog.py b/scons/changelog.py index e4491344a..8c7a5ab1b 100644 --- a/scons/changelog.py +++ b/scons/changelog.py @@ -23,6 +23,8 @@ PREFIX_ASTERISK = '* ' +URL_DOCUMENTATION = 'https://mlrl-boomer.readthedocs.io/en/' + CHANGELOG_FILE_MAIN = '.changelog-main.md' CHANGELOG_FILE_FEATURE = '.changelog-feature.md' @@ -141,8 +143,8 @@ def __format_release_date(self) -> str: def __format_disclaimer(self) -> str: if [changeset for changeset in self.changesets if changeset.header.lower() == 'api changes']: return ('```{warning}\nThis release comes with API changes. For an updated overview of the available ' - + 'parameters and command line arguments, please refer to the ' - + '[documentation](https://documentation/en/' + str(self.version) + '/).\n```\n\n') + + 'parameters and command line arguments, please refer to the ' + '[documentation](' + + URL_DOCUMENTATION + str(self.version) + ').\n```\n\n') return '' def __str__(self) -> str: