From c2d4ffdaeda4cb88cca72244dfa91e2df97cfeb1 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 27 Feb 2022 12:21:23 -0500 Subject: [PATCH 1/2] Use master branch for create_release action - Will always use latest version --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e9de6a36d3d..7a8eefea6f1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -160,7 +160,7 @@ jobs: path: artifacts/ - name: Create Release if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: SunshineStream/actions/create_release@v0 + uses: SunshineStream/actions/create_release@master with: token: ${{ secrets.GITHUB_TOKEN }} next_version: ${{ needs.check_changelog.outputs.next_version }} @@ -211,7 +211,7 @@ jobs: path: artifacts/ - name: Create Release if: ${{ matrix.package == '-p' && github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: SunshineStream/actions/create_release@v0 + uses: SunshineStream/actions/create_release@master with: token: ${{ secrets.GITHUB_TOKEN }} next_version: ${{ needs.check_changelog.outputs.next_version }} @@ -275,7 +275,7 @@ jobs: path: artifacts/ - name: Create Release if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: SunshineStream/actions/create_release@v0 + uses: SunshineStream/actions/create_release@master with: token: ${{ secrets.GITHUB_TOKEN }} next_version: ${{ needs.check_changelog.outputs.next_version }} From fb7a3a07580a6314fce78e29853b2c2af9ca0b43 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 27 Feb 2022 12:21:48 -0500 Subject: [PATCH 2/2] Bump version to v0.13.0 --- CHANGELOG.md | 4 ++++ CMakeLists.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d58a8b513..5a18ecbd748 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.13.0] - 2022-02-27 +### Added +- (MacOS) Initial support for MacOS (#40) + ## [0.12.0] - 2022-02-13 ### Added - New command line argument `--version` diff --git a/CMakeLists.txt b/CMakeLists.txt index fd624bdb7dc..508f1515217 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0) -project(Sunshine VERSION 0.12.0) +project(Sunshine VERSION 0.13.0) set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)