Skip to content

Commit

Permalink
4.4.0 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanPudashkin committed Aug 12, 2024
1 parent 1a9fc23 commit 5a83b38
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- master
- 4.4.0

schedule:
- cron: '0 3 */1 */1 *' # At 03:00 on every day-of-month for master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- master
- 4.4.0

schedule:
- cron: '0 3 */1 */1 *' # At 03:00 on every day-of-month for master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- master
- 4.4.0

schedule:
- cron: '0 3 */1 */1 *' # At 03:00 on every day-of-month for master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_without_qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- master
- 4.4.0

jobs:
run_tests:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check_codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- master
- 4.4.0

jobs:
codestyle:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- master
- 4.4.0
workflow_dispatch:

jobs:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check_visual_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- master
- 4.4.0

jobs:
setup:
Expand Down
6 changes: 3 additions & 3 deletions src/framework/cmake/muse_framework_config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
#define MUSE_APP_VERSION_MAJOR "${MUSE_APP_VERSION_MAJOR}"
#define MUSE_APP_VERSION_MINOR "${MUSE_APP_VERSION_MINOR}"
#define MUSE_APP_VERSION_PATCH "${MUSE_APP_VERSION_PATCH}"
#cmakedefine MUSE_APP_VERSION_LABEL ${MUSE_APP_VERSION_LABEL}
#cmakedefine MUSE_APP_VERSION_LABEL "${MUSE_APP_VERSION_LABEL}"
#cmakedefine MUSE_APP_INSTALL_SUFFIX "${MUSE_APP_INSTALL_SUFFIX}"
#cmakedefine MUSE_APP_INSTALL_PREFIX ${MUSE_APP_INSTALL_PREFIX}
#cmakedefine MUSE_APP_INSTALL_NAME ${MUSE_APP_INSTALL_NAME}
#cmakedefine MUSE_APP_INSTALL_PREFIX "${MUSE_APP_INSTALL_PREFIX}"
#cmakedefine MUSE_APP_INSTALL_NAME "${MUSE_APP_INSTALL_NAME}"

/* ============================================== */
/* Modules */
Expand Down
2 changes: 1 addition & 1 deletion version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set(MUSE_APP_VERSION_MINOR "4")
set(MUSE_APP_VERSION_PATCH "0")
set(MUSE_APP_VERSION_MAJ_MIN "${MUSE_APP_VERSION_MAJOR}.${MUSE_APP_VERSION_MINOR}")
set(MUSE_APP_VERSION "${MUSE_APP_VERSION_MAJ_MIN}.${MUSE_APP_VERSION_PATCH}")
set(MUSE_APP_VERSION_LABEL "")
set(MUSE_APP_VERSION_LABEL "beta")
set(MUSE_APP_TITLE_VERSION "${MUSE_APP_TITLE} ${MUSE_APP_VERSION_MAJOR}")
set(MUSE_APP_NAME_VERSION "${MUSE_APP_NAME} ${MUSE_APP_VERSION_MAJOR}")
set(MUSE_APP_UNSTABLE ON)
Expand Down

0 comments on commit 5a83b38

Please sign in to comment.