Skip to content

Commit

Permalink
Set version to 2.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dchapyshev committed May 20, 2024
1 parent 33fd634 commit d80c0b7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions source/client/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.7.0</string>
<string>2.8.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.7.0</string>
<string>2.8.0</string>
<key>NSAppleEventsUsageDescription</key>
<string></string>
<key>CSResourcesFileMapped</key>
Expand Down
4 changes: 2 additions & 2 deletions source/console/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.7.0</string>
<string>2.8.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.7.0</string>
<string>2.8.0</string>
<key>NSAppleEventsUsageDescription</key>
<string></string>
<key>CSResourcesFileMapped</key>
Expand Down
2 changes: 1 addition & 1 deletion source/sw.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d80c0b7

Please sign in to comment.