diff --git a/.github/workflows/Release-all.yml b/.github/workflows/Release-all.yml index 56fd2cbc2..0fd051c4f 100644 --- a/.github/workflows/Release-all.yml +++ b/.github/workflows/Release-all.yml @@ -1,6 +1,6 @@ name: Release All env: - version: 25.02.0 + version: 25.04.0 prerelease: ${{ !contains(github.ref_name,'master') }} versionSuffix: ${{ !contains(github.ref_name,'master') && 'alpha' || 'Release' }} on: @@ -154,10 +154,10 @@ jobs: if [[ '${{env.prerelease}}' == 'true' ]] then echo "This is a pre-release" - previousTag=$(git tag --sort=-creatordate | grep "^v" | grep -v "Release" | head -n 1) + previousTag=$(git tag --sort=-creatordate | grep "^v" | grep -v -e "Release" -e "vcpkg" | head -n 1) else echo "This is not a pre-release" - previousTag=$(git tag --sort=-creatordate | grep "^v" | grep -v "alpha" | head -n 1) + previousTag=$(git tag --sort=-creatordate | grep "^v" | grep -v -e "alpha" -e "vcpkg" | head -n 1) fi echo "prev_tag=$previousTag" >> $GITHUB_OUTPUT diff --git a/CMakeLists.txt b/CMakeLists.txt index aaf8a82f8..9564148fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ endif () include(FeatureSummary) project(goldendict-ng - VERSION 25.02.0 + VERSION 25.04.0 LANGUAGES CXX C) if (APPLE)