From 98b32b27aea88b857b39db3ef38a38642bdf9734 Mon Sep 17 00:00:00 2001 From: Matej Kenda Date: Mon, 19 Feb 2024 19:51:07 +0100 Subject: [PATCH] Update CHANGELOG, CONTRIBUTORS, release notes --- CHANGELOG | 17 +++++++++++++++++ CONTRIBUTORS | 1 + doc/99100-ReleaseNotes.page | 15 +++++++++++++++ gh-cli-for-release-notes.sh | 6 +++--- 4 files changed, 36 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 943e1086a..813c862c1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,22 @@ This is the changelog file for the POCO C++ Libraries. + +Release 1.13.2 (2024-02-19) +=========================== + +Summary of Changes: + +This is a bugfix release. + +Breaking Changes: + +- GH #4378 [Data] Unconditionally includes of SQLParser.h + +Bug fixes and Improvements: + +- GH #4462 Disable SQL parsing by default + + Release 1.13.1 (2024-02-05) =========================== diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 15b077a09..3b226c004 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -64,3 +64,4 @@ Alexander B Andrew Auclair Jochen Sprickerhof Jesse Hoogervorst +Aron Budea diff --git a/doc/99100-ReleaseNotes.page b/doc/99100-ReleaseNotes.page index 0b17412c6..25f9f5667 100644 --- a/doc/99100-ReleaseNotes.page +++ b/doc/99100-ReleaseNotes.page @@ -2,6 +2,21 @@ POCO C++ Libraries Release Notes AAAIntroduction +!!!Release 1.13.2 + +!!Summary of Changes + +This is a bugfix release. + +!!Breaking Changes + + - GH #4378 [Data] Unconditionally includes of SQLParser.h + +!!Bug fixes and Improvements + + - GH #4462 Disable SQL parsing by default + + !!!Release 1.13.1 !!Summary of Changes diff --git a/gh-cli-for-release-notes.sh b/gh-cli-for-release-notes.sh index 95091fa26..565f345ef 100755 --- a/gh-cli-for-release-notes.sh +++ b/gh-cli-for-release-notes.sh @@ -26,14 +26,14 @@ echo =========================== echo echo "Summary of Changes:" echo -echo "Breaking changes:" +echo "Breaking Changes:" echo gh issue list -S 'milestone:"'"${MILESTONE}"'" label:breaking' -s all -L 500 --json number,title --jq '.[] | "- GH #\(.number) \(.title)"' gh pr list -S 'milestone:"'"${MILESTONE}"'" label:breaking' -s all -L 500 --json number,title --jq '.[] | "- PR #\(.number) \(.title)"' echo -echo "Features and enhancements:" +echo "Features and Enhancements:" echo gh issue list -S 'milestone:"'"${MILESTONE}"'" -label:breaking label:enhancement' -s all -L 500 --json number,title --jq '.[] | "- GH #\(.number) \(.title)"' @@ -42,7 +42,7 @@ gh pr list -S 'milestone:"'"${MILESTONE}"'" -label:breaking label:enhancement gh pr list -S 'milestone:"'"${MILESTONE}"'" -label:breaking -label:enhancement label:feature' -s all -L 500 --json number,title --jq '.[] | "- PR #\(.number) \(.title)"' echo -echo "Bug fixes and improvements:" +echo "Bug Fixes and Improvements:" echo gh issue list -S 'milestone:"'"${MILESTONE}"'" -label:breaking -label:enhancement -label:feature' -s all -L 500 --json number,title --jq '.[] | "- GH #\(.number) \(.title)"'