diff --git a/LATEST_RELEASE_NOTES.md b/LATEST_RELEASE_NOTES.md index c1244f51..73f63421 100644 --- a/LATEST_RELEASE_NOTES.md +++ b/LATEST_RELEASE_NOTES.md @@ -1,44 +1,6 @@ -## Release notes for 3.7.1 +## Release notes for 3.7.2 Bugs addressed in this release: -* [#443](../../issues/443) Dark Mode doesn't show status bar on Mac -* [#462](../../issues/462) PDF printing of Continuities seems wrong -* [#497](../../issues/497) Animate ctor should be explicit -* [#517](../../issues/517) Cannot open CalChart, says that application is damaged -* [#518](../../issues/518) Animation looks wrong -* [#540](../../issues/540) Current 3.7.1 does not run -* [#542](../../issues/542) crashes when going to last sheet of animation in RAINBOW show -* [#544](../../issues/544) Print Continuity text is not showing up - Other changes: -* [#492](../../issues/492) calchart_cmd should have an option for dumping json -* [#494](../../issues/494) Refine the calchart_cmd for dump_continuity_text -* [#498](../../issues/498) remove GetAnimation -* [#500](../../issues/500) Add JSON tests to sanity tests -* [#502](../../issues/502) remove get animation sheet iterator -* [#504](../../issues/504) Make Animation::NextBeat private -* [#506](../../issues/506) remove index from AnimateInfo -* [#510](../../issues/510) Switch the underlying Coord system to int32 -* [#512](../../issues/512) Animation commands should contain the position, not the beat -* [#514](../../issues/514) Make Animation part of the Show, with access through the show -* [#521](../../issues/521) Degree should have special constructors for common directions -* [#526](../../issues/526) We should have a sanity test for ps output -* [#528](../../issues/528) Clean up postscript files to be more value like -* [#530](../../issues/530) Tidy up CalChartShow.h -* [#532](../../issues/532) tidy up CalChartFileFormat -* [#534](../../issues/534) remove unused Token from Continuity parsing -* [#536](../../issues/536) Change the animation objects to be within the Animate namespace -* [#538](../../issues/538) Remove unused cont symbol from animate errors -* [#546](../../issues/546) Change behavior of show generation so endPosition and nextPosition in animation are the same -* [#547](../../issues/547) Add some basic profiling to calband_cmd -* [#550](../../issues/550) Make animation compilation an operation of two pairs of sheets -* [#552](../../issues/552) Move GenerateModeDrawCommands from CalChartDrawing to core/Mode -* [#554](../../issues/554) Move General printing over to PrintContUseNewDraw -* [#557](../../issues/557) Move Config into DrawPoints -* [#563](../../issues/563) Print doesn't show continuity correct -* [#565](../../issues/565) Move more drawing into Show and ShowDoc -* [#567](../../issues/567) Remove GetCurrentSheet() from CalChartView -* [#570](../../issues/570) Tidy up CalChart View - diff --git a/RELEASE_INSTRUCTIONS.md b/RELEASE_INSTRUCTIONS.md index 548a04ae..b6de55ec 100644 --- a/RELEASE_INSTRUCTIONS.md +++ b/RELEASE_INSTRUCTIONS.md @@ -13,7 +13,7 @@ Checklist CalChart uses CMake and Github actions to automate the release process. When you push a tag for the repository, github will build and package the release. -The current calchart version is 3.7.1. In all commands below, substitute that number for `$CCVER` (meaning when you read `$CCVER`, type 3.7.1) +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` @@ -32,8 +32,8 @@ awk '//; /^# Release notes/{while(getline<"LATEST_RELEASE_NOTES.md"){print}}' RE 6. Tag the depot ``` -$ git tag -a v3.7.1 -m "calchart-3.7.1" -$ git push origin v3.7.1 +$ git tag -a v3.7.2 -m "calchart-3.7.2" +$ git push origin v3.7.2 ``` This should trigger the github action, which should publish release notes in Draft form. @@ -54,7 +54,7 @@ This should trigger the github action, which should publish release notes in Dra 14. Repeat for `Install-CalChart-$CCVER.exe`. Click on zip and edit the file details to signify its platform is Windows and set the release_notes for the file. - 15. Update https://github.com/calband/calchart/milestone by closing the shipped milestone and starting the next one. + 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`