diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 966ae55..0dbca74 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,13 +12,13 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Build - run: echo ${{ github.sha }} > Release.txt + run: echo ${{ github.sha }} > Release-${{ github.ref_name }}.txt - name: Test - run: cat Release.txt + run: cat Release-${{ github.ref_name }}.txt - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: files: | - Release.txt + Release-${{ github.ref_name }}.txt LICENSE \ No newline at end of file diff --git a/version.h b/version.h index 5fb9a0d..3821385 100644 --- a/version.h +++ b/version.h @@ -2,15 +2,15 @@ #define _VERSION_MAJOR 0 #define _VERSION_MINOR 10 #define _VERSION_PATCH 3 -#define _VERSION_BUILD 2097 -#define _VERSION_GITHASH "827df64" +#define _VERSION_BUILD 2101 +#define _VERSION_GITHASH "d99f272" #define _VERSION_PRERELEASE beta -#define _VERSION_DATE "12-09-2023" -#define _VERSION_TIME "21:15:34" +#define _VERSION_DATE "17-03-2024" +#define _VERSION_TIME "11:46:27" #define _SEMVER_CORE "0.10.3" -#define _SEMVER_BUILD "0.10.3+2097" -#define _SEMVER_GITHASH "0.10.3+827df64" -#define _SEMVER_FULL "0.10.3-beta+827df64" -#define _SEMVER_NOBUILD "0.10.3-beta (12-09-2023)" -#define _VERSION "0.10.3-beta+827df64 (12-09-2023)" +#define _SEMVER_BUILD "0.10.3+2101" +#define _SEMVER_GITHASH "0.10.3+d99f272" +#define _SEMVER_FULL "0.10.3-beta+d99f272" +#define _SEMVER_NOBUILD "0.10.3-beta (17-03-2024)" +#define _VERSION "0.10.3-beta+d99f272 (17-03-2024)" //The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver