Skip to content

Commit 703e1d9

Browse files
authored
Prep for 3.8.0 (#654)
1 parent 2cc7fe8 commit 703e1d9

File tree

2 files changed

+37
-3
lines changed

2 files changed

+37
-3
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,40 @@ If you need to regenerate the help documentation, see the [README-docs.txt](READ
5656

5757

5858
# Release notes
59+
## Release notes for 3.8.0
60+
61+
Bugs addressed in this release:
62+
63+
* [#582](../../issues/582) Why does CalChart still say it's from an unknown developer when launch on Mac?
64+
* [#593](../../issues/593) Are the draw colors for selected and reference inverted on the drawing setup
65+
* [#596](../../issues/596) Did flip labels break?
66+
* [#598](../../issues/598) ASAN crashes when drawing sprites
67+
* [#599](../../issues/599) Selected marchers on field don't match animation
68+
* [#600](../../issues/600) click on Sprites in animation view doesn't automatically update the view
69+
* [#624](../../issues/624) Why are all shows showing there are collisions
70+
* [#629](../../issues/629) Crash when using transition solver
71+
72+
Other changes:
73+
74+
* [#590](../../issues/590) Move things related to drawing a sheet to sheet so it can generate Draw commands
75+
* [#602](../../issues/602) Have Background images use CalChart::Draw
76+
* [#602](../../issues/602) Have Background images use CalChart::Draw
77+
* [#608](../../issues/608) Add the ability to draw a curve in CalChart
78+
* [#613](../../issues/613) Have a way to save Curves in the show
79+
* [#615](../../issues/615) Update to latest wxWidgets
80+
* [#617](../../issues/617) Don't have GetBackgroundImages return std::vector<ImageInfo> by reference
81+
* [#619](../../issues/619) fix failing builds with png
82+
* [#622](../../issues/622) change beats_t to Beats
83+
* [#628](../../issues/628) Bump wxWidgets to 3.2.8 and wxUI to 0.2.0
84+
* [#632](../../issues/632) Make PointPicker more generic
85+
* [#634](../../issues/634) change ImportPrintableContinuity to return optional
86+
* [#636](../../issues/636) introduce MarcherIndex to clarify what type an argument is
87+
* [#638](../../issues/638) Move tests into CMake Tests
88+
* [#640](../../issues/640) Clean up some of the CalChartAngles.h clang-tidy errors
89+
* [#643](../../issues/643) Remove sheet as point friend
90+
* [#645](../../issues/645) Adopt wxUI Menu widely
91+
* [#649](../../issues/649) It is too hard to select curve control buttons.
92+
5993
## Release notes for 3.7.2
6094

6195
Bugs addressed in this release:

RELEASE_INSTRUCTIONS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Checklist
1313

1414
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.
1515

16-
The current calchart version is 3.7.3. In all commands below, substitute that number for `$CCVER` (meaning when you read `$CCVER`, type 3.7.3). 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.
16+
The current calchart version is 3.8.0. In all commands below, substitute that number for `$CCVER` (meaning when you read `$CCVER`, type 3.8.0). 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.
1717

1818
1. Create a git branch to prep the changes: `git checkout -b dev/prep_$CCVER`
1919

@@ -32,8 +32,8 @@ awk '//; /^# Release notes/{while(getline<"LATEST_RELEASE_NOTES.md"){print}}' RE
3232
6. Tag the depot
3333

3434
```
35-
$ git tag -a v3.7.3 -m "calchart-3.7.3"
36-
$ git push origin v3.7.3
35+
$ git tag -a v3.8.0 -m "calchart-3.8.0"
36+
$ git push origin v3.8.0
3737
```
3838

3939
This should trigger the github action, which should publish release notes in Draft form.

0 commit comments

Comments
 (0)