From 128a7772c90dcc7fd766d3df16cb691923bf9950 Mon Sep 17 00:00:00 2001 From: Richard Powell Date: Thu, 9 Jan 2025 21:40:12 -0800 Subject: [PATCH] Prep for 3.7.2 --- README.md | 11 +++++++++++ RELEASE_INSTRUCTIONS.md | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c1534053..fcc77694 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,17 @@ If you need to regenerate the help documentation, see the [README-docs.txt](READ # Release notes +## Release notes for 3.7.2 + +Bugs addressed in this release: + +* [#581](../../issues/581) Calchart 3.7.1 crashes on loading a show + +Other changes: + +* [#583](../../issues/583) Enable ASAN builds for debug to help catch issue. +* [#584](../../issues/584) Why didn't the failures in ASAN cause sanity_test.py to fail? + ## Release notes for 3.7.1 Bugs addressed in this release: diff --git a/RELEASE_INSTRUCTIONS.md b/RELEASE_INSTRUCTIONS.md index b6de55ec..17607791 100644 --- a/RELEASE_INSTRUCTIONS.md +++ b/RELEASE_INSTRUCTIONS.md @@ -15,7 +15,7 @@ CalChart uses CMake and Github actions to automate the release process. When yo The current calchart version is 3.7.2. In all commands below, substitute that number for `$CCVER` (meaning when you read `$CCVER`, type 3.7.2). When incrementing, be sure to consider if it's time to bump the MINOR version. Only do that if there's incompatibilities, such as a new feature that won't work on a previous version of CalChart. - 1. Create a git branch to prep the changes: `git diff dev/prep_$CCVER` + 1. Create a git branch to prep the changes: `git checkout -b dev/prep_$CCVER` 2. Prebuild the project to make sure its working @@ -56,7 +56,7 @@ This should trigger the github action, which should publish release notes in Dra 15. Update https://github.com/calband/calchart/milestones by closing the shipped milestone and starting the next one. - 16. Create a git branch to pre-prep the next version: `git diff dev/pre_prep_$CCVER+1` + 16. Create a git branch to pre-prep the next version: `git checkout -b dev/pre_prep_$CCVER+1` 17. Clear out LATEST_RELEASE_NOTES.md for next development effort. Update $CCVER+1 in RELEASE_INSTRUCTIONS.md.