You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE_INSTRUCTIONS.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Checklist
13
13
14
14
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.
15
15
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.
17
17
18
18
1. Create a git branch to prep the changes: `git checkout -b dev/prep_$CCVER`
19
19
@@ -32,8 +32,8 @@ awk '//; /^# Release notes/{while(getline<"LATEST_RELEASE_NOTES.md"){print}}' RE
32
32
6. Tag the depot
33
33
34
34
```
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
37
37
```
38
38
39
39
This should trigger the github action, which should publish release notes in Draft form.
0 commit comments