1
0
mirror of https://github.com/fadden/6502bench.git synced 2025-02-10 03:30:45 +00:00

Version 1.9.0-dev3

This commit is contained in:
Andy McFadden 2024-07-08 14:08:21 -07:00
parent 5c6d1b5016
commit ba9d6e7924
2 changed files with 17 additions and 14 deletions

View File

@ -25,6 +25,6 @@ namespace SourceGen {
/// SourceGen version number. /// SourceGen version number.
/// </summary> /// </summary>
public static readonly CommonUtil.Version ProgramVersion = public static readonly CommonUtil.Version ProgramVersion =
new CommonUtil.Version(1, 9, 0, CommonUtil.Version.PreRelType.Dev, 2); new CommonUtil.Version(1, 9, 0, CommonUtil.Version.PreRelType.Dev, 3);
} }
} }

View File

@ -43,19 +43,22 @@ explains a bit more.
Steps: Steps:
1. Run Debug &gt; Source Generation Tests to verify that the code generation 1. Update the version number in `SourceGen/App.xaml.cs`.
2. Run Debug &gt; Source Generation Tests to verify that the code generation
tests pass. This requires that all cross-assemblers be installed and tests pass. This requires that all cross-assemblers be installed and
configured. configured.
2. Remove any existing `DIST_Release` directory from the top level. 3. Remove any existing `DIST_Release` directory from the top level.
3. In Visual Studio, change the build configuration to Release, and the startup project 4. In Visual Studio, change the build configuration to Release, and the
to MakeDist. startup project to MakeDist.
4. Do a full clean build. 5. Do a full clean build.
5. Hit F5 to start MakeDist. Click "Build" to generate a release build. The files will be 6. Hit F5 to start MakeDist. Click "Build" to generate a release build. The
copied into `DIST_Release`. files will be copied into `DIST_Release`.
6. Create an empty ZIP file (e.g. `6502bench123d1.zip`). 7. Create an empty ZIP file (e.g. `6502bench123d1.zip`).
7. Copy all files from `DIST_Release` into it. 8. Copy all files from `DIST_Release` into it.
8. Submit all changes to git, push them to the server. 9. Submit all changes to git, push them to the server.
9. Create a new release on github. Drag the ZIP file into it. 10. Create a new release on github. Drag the ZIP file into it.
10. Update/close any issues that have been addressed by the new release. 11. Update/close any issues that have been addressed by the new release.
Add the change notes to the wiki page.
Version numbers should follow the semantic versioning scheme: v1.2.3, v1.2.3-dev1, etc. Version numbers should follow the semantic versioning scheme: v1.2.3,
v1.2.3-dev1, etc.