From d80c0b7f4a022e20787f11e3decf1a54ef98f260 Mon Sep 17 00:00:00 2001 From: Dmitry Chapyshev Date: Mon, 20 May 2024 14:52:49 +0500 Subject: [PATCH] Set version to 2.8.0. --- .github/workflows/windows.yml | 2 +- CMakeLists.txt | 2 +- source/client/Info.plist | 4 ++-- source/console/Info.plist | 4 ++-- source/sw.cc | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 88235725b6..4b975e0832 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -93,7 +93,7 @@ jobs: # Step 5 - name: Build MSI packages run: | - installer/build.cmd 2.7.0 ${{ matrix.arch }} ${{ github.workspace }} ${{ github.workspace }}/builds/ninja-multi-vcpkg-ci/${{ matrix.build_type }} + installer/build.cmd 2.8.0 ${{ matrix.arch }} ${{ github.workspace }} ${{ github.workspace }}/builds/ninja-multi-vcpkg-ci/${{ matrix.build_type }} shell: cmd working-directory: ${{ github.workspace }} diff --git a/CMakeLists.txt b/CMakeLists.txt index f074c97877..090bdb45de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ set_property(GLOBAL PROPERTY USE_FOLDERS ON) project(aspia) set(ASPIA_VERSION_MAJOR 2) -set(ASPIA_VERSION_MINOR 7) +set(ASPIA_VERSION_MINOR 8) set(ASPIA_VERSION_PATCH 0) # On CI installed dir could be outside of vcpkg root diff --git a/source/client/Info.plist b/source/client/Info.plist index 75ad7737f1..e0625b253b 100644 --- a/source/client/Info.plist +++ b/source/client/Info.plist @@ -21,11 +21,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.7.0 + 2.8.0 CFBundleSignature ???? CFBundleVersion - 2.7.0 + 2.8.0 NSAppleEventsUsageDescription CSResourcesFileMapped diff --git a/source/console/Info.plist b/source/console/Info.plist index bb4e0b6c6c..5d51e0298e 100644 --- a/source/console/Info.plist +++ b/source/console/Info.plist @@ -21,11 +21,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.7.0 + 2.8.0 CFBundleSignature ???? CFBundleVersion - 2.7.0 + 2.8.0 NSAppleEventsUsageDescription CSResourcesFileMapped diff --git a/source/sw.cc b/source/sw.cc index 497b9ba908..aa0b47bdb9 100644 --- a/source/sw.cc +++ b/source/sw.cc @@ -16,7 +16,7 @@ }*/ void build(Solution &s) { - auto &aspia = s.addProject("aspia", "2.7.0"); + auto &aspia = s.addProject("aspia", "2.8.0"); aspia += Git("https://github.com/dchapyshev/aspia", "v{v}"); constexpr auto cppstd = cpp17;