diff --git a/.github/workflows/putup-release.yml b/.github/workflows/putup-release.yml index 1a83223ea..df75e9451 100644 --- a/.github/workflows/putup-release.yml +++ b/.github/workflows/putup-release.yml @@ -347,6 +347,6 @@ jobs: dist/*.exe dist/*.zip dist/*.sha256sum dist/*.sha512sum else gh release create "$TAG" --repo "$REPO" \ - --title "Tera Term $TAG" --prerelease --generate-notes \ + --title "Tera Term $TAG" --latest --generate-notes \ dist/*.exe dist/*.zip dist/*.sha256sum dist/*.sha512sum fi diff --git a/teraterm/common/tt-version.h b/teraterm/common/tt-version.h index 6034cb37b..6962f6798 100644 --- a/teraterm/common/tt-version.h +++ b/teraterm/common/tt-version.h @@ -28,10 +28,16 @@ #pragma once +// MAJOR/MINOR/PATCH track the UPSTREAM base this fork is built from -- they are +// read as upstream-semantic by ttset RunningVersion, the TERATERM.INI Version +// key, the ttpcmn filemap name and the TTL cur_major/cur_minor macros, so they +// move only on a rebase. The fork's own release number lives in SUBSTR and +// increments independently. No spaces: svnrev.pl splices SUBSTR straight into +// the installer/zip filenames. #define TT_VERSION_MAJOR 5 #define TT_VERSION_MINOR 8 #define TT_VERSION_PATCH 0 -#define TT_VERSION_SUBSTR "agent" +#define TT_VERSION_SUBSTR "agent-1.0.0" //#undef TT_VERSION_SUBSTR // SUBSTR が不要な時は undef する // 使用例 "dev", "RC", "RC2"