From 085458a47a3b9aa6f08847ad7c0f09b6001ea723 Mon Sep 17 00:00:00 2001 From: shenleban tongying Date: Fri, 24 Jan 2025 16:29:52 -0500 Subject: [PATCH] version bump for new dev cycle --- .github/workflows/Release-all.yml | 6 +++--- CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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)