Skip to content

Commit d5e41a0

Browse files
authored
Prep for 3.6.4 release (#391)
1 parent 9b44a00 commit d5e41a0

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

LATEST_RELEASE_NOTES.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
1-
## Release notes for 3.6.3
2-
3-
Features addressed in this release:
4-
5-
* [#378](../../issues/378) Add a LICENSE for the product
1+
## Release notes for 3.6.4
62

73
Bugs addressed in this release:
84

9-
* [#367](../../issues/367) Zoom should be around center of field
10-
* [#366](../../issues/366) Cache the current top left corner when exiting a show
11-
* [#346](../../issues/346) Fixing up pinch and zoom.
5+
* [#387](../../issues/387) Loading Image data doesn't work
6+
* [#386](../../issues/386) Better Cont composer dialog work.
7+
* [#379](../../issues/379) Extra v in version
8+
* [#125](../../issues/125) scale printing down if marchers exceed field size
129

1310
Other changes:
1411

15-
* [#358](../../issues/358) Update calchart to using wxWidgets 3.1.5
16-
* [#357](../../issues/357) removing boost dependency from calchart
17-
* [#356](../../issues/356) updating the architecture guide
18-
* [#349](../../issues/349) Use C++20 for all parts of Cmake
19-
* [#347](../../issues/347) Change calchart git branch from master to main
20-
* [#339](../../issues/339) Wide variety of changes to make modernize CalChart.
12+
* [#390](../../issues/390) working to make calchart parsing better.
2113

README.md

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

5757

5858
# Release notes
59+
## Release notes for 3.6.4
60+
61+
Bugs addressed in this release:
62+
63+
* [#387](../../issues/387) Loading Image data doesn't work
64+
* [#386](../../issues/386) Better Cont composer dialog work.
65+
* [#379](../../issues/379) Extra v in version
66+
* [#125](../../issues/125) scale printing down if marchers exceed field size
67+
68+
Other changes:
69+
70+
* [#390](../../issues/390) working to make calchart parsing better.
71+
5972
## Release notes for 3.6.3
6073

6174
Features addressed in this release:

RELEASE_INSTRUCTIONS.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ Checklist
55
* Did you run clang format on all the files? (`clang-format -style="{BasedOnStyle: webkit}" -i src/*`)
66
* Did it build on both windows and mac?
77
* Did you open and close some files?
8+
* Did you open and close some files with images in them?
89

910
---
1011

1112
# How to release calchart:
1213

1314
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.
1415

15-
The current calchart version is 3.6.3. In all commands below, substitute that number for `$CCVER` (meaning when you read `$CCVER`, type 3.6.3)
16+
The current calchart version is 3.6.4. In all commands below, substitute that number for `$CCVER` (meaning when you read `$CCVER`, type 3.6.4)
1617

1718
1. Prebuild the project to make sure its working
1819

@@ -27,8 +28,8 @@ awk '//; /^# Release notes/{while(getline<"LATEST_RELEASE_NOTES.md"){print}}' RE
2728
4. Tag the depot
2829

2930
```
30-
$ git tag -a v3.6.3 -m "calchart-3.6.3"
31-
$ git push origin v3.6.3
31+
$ git tag -a v3.6.4 -m "calchart-3.6.4"
32+
$ git push origin v3.6.4
3233
```
3334

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

0 commit comments

Comments
 (0)