Skip to content

Commit 6b2a75c

Browse files
authored
Merge pull request #332 from calband/prep_for_3_6_1
All the prep for CalChart 3.6.1
2 parents d801d8c + 012fa35 commit 6b2a75c

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ project (CalChart)
1212

1313
set (CalChart_VERSION_MAJOR 3)
1414
set (CalChart_VERSION_MINOR 6)
15-
set (CalChart_VERSION_PATCH 0)
15+
set (CalChart_VERSION_PATCH 1)
1616

1717
set (CalChart_VERSION "${CalChart_VERSION_MAJOR}.${CalChart_VERSION_MINOR}.${CalChart_VERSION_PATCH}")
1818

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,25 @@ If you need to regenerate the help documentation, see the [README-docs.txt](READ
6969

7070
# Release notes
7171

72-
## Release notes for 3.6
72+
## Release notes for 3.6.1
73+
74+
Features addressed in this release:
75+
76+
* [#326](../../issues/326) Improving click and drag by not unselecting groups.
77+
* [#327](../../issues/327) Adding sprites to Animation screen.
78+
* [#331](../../issues/331) Adding ability to label Instruments
79+
80+
Bugs addressed in this release:
81+
82+
* [#323](../../issues/323) cannot open old calchart files when they have images.
83+
* [#324](../../issues/324) Transition solver doesn't seem to add groups on Windows.
84+
* [#328](../../issues/328) Point picker crashes if you open, close then quit a show
85+
86+
Other changes:
87+
88+
* [#322](../../issues/322) Increment wxWidgets to 3.1.4
89+
90+
## Release notes for 3.6.0
7391

7492
Features addressed in this release:
7593

RELEASE_INSTRUCTIONS.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Checklist
88

99
How to release calchart:
1010

11-
The current calchart version is 3.6.0. In all commands below, substitute that number for $CCVER (meaning when you read $CCVER, type 3.6.0)
11+
The current calchart version is 3.6.1. In all commands below, substitute that number for $CCVER (meaning when you read $CCVER, type 3.6.1)
1212

1313
0.1 Increment the CalChart_VERSION in CMakeLists.txt to CCVER
1414

@@ -58,14 +58,14 @@ The final product is build/CalChart-$CCVER.dmg
5858
---
5959

6060
2. Tag the depot
61-
$ git tag -a v3.6.0 -m "calchart-3.6.0"
62-
$ git push origin v3.6.0
61+
$ git tag -a v3.6.1 -m "calchart-3.6.1"
62+
$ git push origin v3.6.1
6363

6464
3. Go to a temporary directory on your system to recheck at the tag. This is to avoid having any unwanted files
6565
$ cd /tmp
6666
$ git clone --recursive https://github.com/calband/calchart.git calchart
6767
$ cd calchart
68-
$ git checkout v3.6.0
68+
$ git checkout v3.6.1
6969

7070
4. Rebuild the release now that you have the tag (repeat instructions for step 1)
7171

src/basic_ui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static constexpr auto kInstruments = {
4646
"Mello",
4747
"Trombone",
4848
"Baritone",
49-
"Basses",
49+
"Sousaphone",
5050
"Snare",
5151
"Bass Drum",
5252
"Quad Drum",

0 commit comments

Comments
 (0)