Update CHANGELOG, CONTRIBUTORS, release notes

This commit is contained in:
Matej Kenda 2024-02-19 19:51:07 +01:00 committed by Alex Fabijanic
parent 37e17092ff
commit 98b32b27ae
4 changed files with 36 additions and 3 deletions

View File

@ -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)
===========================

View File

@ -64,3 +64,4 @@ Alexander B
Andrew Auclair
Jochen Sprickerhof
Jesse Hoogervorst
Aron Budea

View File

@ -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

View File

@ -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)"'