Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Sep 4, 2023
1 parent 425b9c4 commit fad2f1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmake/friction-version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

set(PROJECT_VERSION_MAJOR 0)
set(PROJECT_VERSION_MINOR 9)
set(PROJECT_VERSION_PATCH 4)
set(PROJECT_VERSION_PATCH 5)
set(PROJECT_VERSION_TWEAK 0)
set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})

Expand Down
2 changes: 1 addition & 1 deletion src/core/appsupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const QString AppSupport::getAppUrl()

const QString AppSupport::getAppVersion(bool html)
{
QString version = QString::fromUtf8("0.9.4"); // fallback, should not happen
QString version = QString::fromUtf8("0.9.5"); // fallback, should not happen
#ifdef PROJECT_VERSION
version = QString::fromUtf8(PROJECT_VERSION);
#endif
Expand Down

0 comments on commit fad2f1b

Please sign in to comment.