From 803286d804305bd32316bbfd38911a254e6e13bb Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 22 Sep 2025 17:01:56 +0100 Subject: [PATCH 1/2] feat: add release-hook.sh script for automated changelog generation Adds release hook script that integrates with the release process to automatically generate changelog entries using gen-changelog tool. This script will be executed during the release process to update the PRLOG.md file with the appropriate version and date information. --- release-hook.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 release-hook.sh diff --git a/release-hook.sh b/release-hook.sh new file mode 100755 index 0000000..b583b7b --- /dev/null +++ b/release-hook.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +# Build Changelog +gen-changelog generate --display-summaries --next-version "$SEMVER" \ No newline at end of file From eb51da8c2f7dcc4655effcad148a98f884ed7b84 Mon Sep 17 00:00:00 2001 From: Jerus Bot <171541392+jerus-bot@users.noreply.github.com> Date: Mon, 22 Sep 2025 16:05:59 +0000 Subject: [PATCH 2/2] chore: update prlog for pr --- PRLOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/PRLOG.md b/PRLOG.md index f894f53..04e7bd9 100644 --- a/PRLOG.md +++ b/PRLOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- add release-hook.sh script for automated changelog generation(pr [#112]) + ### Changed - chore-rename CHANGELOG.md to PRLOG.md(pr [#110]) @@ -370,6 +374,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#109]: https://github.com/jerus-org/lambda_sqs/pull/109 [#110]: https://github.com/jerus-org/lambda_sqs/pull/110 [#111]: https://github.com/jerus-org/lambda_sqs/pull/111 +[#112]: https://github.com/jerus-org/lambda_sqs/pull/112 [Unreleased]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.34...HEAD [0.2.34]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.33...v0.2.34 [0.2.33]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.32...v0.2.33