From be4556dc5f9f8b513d538dc4db34598e9737e5ea Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sun, 17 Mar 2024 11:23:30 +0100 Subject: [PATCH] Release 1.0.1 --- CHANGELOG.md | 67 +++++++++++++-------- CHANGELOG.rst | 13 ++++ changelogs/changelog.yaml | 9 +++ changelogs/fragments/1.0.1.yml | 1 - changelogs/fragments/197-md-link-escape.yml | 2 - 5 files changed, 64 insertions(+), 28 deletions(-) delete mode 100644 changelogs/fragments/1.0.1.yml delete mode 100644 changelogs/fragments/197-md-link-escape.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index 30efeaa..2b6cba7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,33 +1,50 @@ # antsibull\-docs \-\- TypeScript library for processing Ansible documentation markup Release Notes **Topics** + +- v1\.0\.1 + - Release Summary + - Bugfixes - v1\.0\.0 - - Release Summary + - Release Summary - v0\.4\.0 - - Release Summary - - Minor Changes - - Breaking Changes / Porting Guide - - Bugfixes + - Release Summary + - Minor Changes + - Breaking Changes / Porting Guide + - Bugfixes - v0\.3\.0 - - Release Summary - - Minor Changes + - Release Summary + - Minor Changes - v0\.2\.0 - - Release Summary - - Minor Changes - - Breaking Changes / Porting Guide - - Bugfixes + - Release Summary + - Minor Changes + - Breaking Changes / Porting Guide + - Bugfixes - v0\.1\.0 - - Release Summary - - Minor Changes - - Breaking Changes / Porting Guide - - Bugfixes + - Release Summary + - Minor Changes + - Breaking Changes / Porting Guide + - Bugfixes - v0\.0\.1 - - Release Summary + - Release Summary + + +## v1\.0\.1 + + +### Release Summary + +Maintenance release\. + + +### Bugfixes + +* Properly escape MarkDown link targets \([https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/197](https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/197)\)\. ## v1\.0\.0 - + ### Release Summary First stable release\. This package is using semantic versioning\, so there will be no more breaking changes until the release of 2\.0\.0\. @@ -35,7 +52,7 @@ First stable release\. This package is using semantic versioning\, so there will ## v0\.4\.0 - + ### Release Summary New major release that increases compatibility with the [Python code in antsibull\-docs\-parser](https\://github\.com/ansible\-community/antsibull\-docs\-parser)\. @@ -50,7 +67,7 @@ New major release that increases compatibility with the [Python code in antsibul * Rename current\_plugin options of various functions to currentPlugin\, and the role\_entrypoint option of parse to roleEntrypoint \([https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/49](https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/49)\)\. - + ### Bugfixes * Fix URL escaping in MarkDown \([https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/51](https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/51)\)\. @@ -58,7 +75,7 @@ New major release that increases compatibility with the [Python code in antsibul ## v0\.3\.0 - + ### Release Summary Feature release\. @@ -71,7 +88,7 @@ Feature release\. ## v0\.2\.0 - + ### Release Summary New major release that increases compatibility with the [Python code in antsibull\-docs\-parser](https\://github\.com/ansible\-community/antsibull\-docs\-parser)\. @@ -95,7 +112,7 @@ New major release that increases compatibility with the [Python code in antsibul * Modify pluginOptionLikeLink signature to include a new argument entrypoint after plugin \([https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/31](https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/31)\)\. * Rename only\_classic\_markup parser option to onlyClassicMarkup \([https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/22](https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/22)\)\. - + ### Bugfixes * HTML and MarkDown code\: quote HTML command arguments correctly\; make sure URLs are correctly quoted \([https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/22](https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/22)\)\. @@ -103,7 +120,7 @@ New major release that increases compatibility with the [Python code in antsibul ## v0\.1\.0 - + ### Release Summary First usable version\, including semantic markup support\. @@ -123,7 +140,7 @@ First usable version\, including semantic markup support\. * The package was renamed on npmjs\.com from antsibull\_docs to antsibull\-docs \([https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/15](https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/15)\)\. - + ### Bugfixes * Fix error message output for MarkDown\. Make sure error message is escaped in RST\. Fix error messages when parsing escaped parameters \([https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/8](https\://github\.com/ansible\-community/antsibull\-docs\-ts/pull/8)\)\. @@ -132,7 +149,7 @@ First usable version\, including semantic markup support\. ## v0\.0\.1 - + ### Release Summary Initial release\. diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8369e4d..b47eae6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,19 @@ antsibull-docs -- TypeScript library for processing Ansible documentation markup .. contents:: Topics +v1.0.1 +====== + +Release Summary +--------------- + +Maintenance release. + +Bugfixes +-------- + +- Properly escape MarkDown link targets (https://github.com/ansible-community/antsibull-docs-ts/pull/197). + v1.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 72dcca1..892aaa5 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -105,3 +105,12 @@ releases: fragments: - 1.0.0.yml release_date: '2023-04-27' + 1.0.1: + changes: + bugfixes: + - Properly escape MarkDown link targets (https://github.com/ansible-community/antsibull-docs-ts/pull/197). + release_summary: Maintenance release. + fragments: + - 1.0.1.yml + - 197-md-link-escape.yml + release_date: '2024-03-17' diff --git a/changelogs/fragments/1.0.1.yml b/changelogs/fragments/1.0.1.yml deleted file mode 100644 index 778e3fb..0000000 --- a/changelogs/fragments/1.0.1.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Maintenance release. diff --git a/changelogs/fragments/197-md-link-escape.yml b/changelogs/fragments/197-md-link-escape.yml deleted file mode 100644 index 89917a0..0000000 --- a/changelogs/fragments/197-md-link-escape.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "Properly escape MarkDown link targets (https://github.com/ansible-community/antsibull-docs-ts/pull/197)."