Skip to content

Commit

Permalink
Bump version to 3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
tycho-kirchner committed Apr 18, 2023
1 parent fa97907 commit 6254bc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ endif()

# version applies to all released files: shournal, shournal-run, libshournal-shellwatch.so
# and shell-integration-scripts (e.g. integration_ko.bash)
set(shournal_version "2.9")
set(shournal_version "3.0")

cmake_policy( SET CMP0048 NEW )
project(shournal VERSION ${shournal_version} LANGUAGES CXX C)
Expand Down
3 changes: 2 additions & 1 deletion src/shournal-run/mark_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ using std::string;
// to the "current" version and the value determines the *minimum*
// required version.
static const QHash<QVersionNumber, QVersionNumber> KVERSION_COMPATIBILITY_MAP = {
{QVersionNumber{2,9}, QVersionNumber{2,8}}
{QVersionNumber{2,9}, QVersionNumber{2,8}},
{QVersionNumber{3,0}, QVersionNumber{2,8}}
};

ExcShournalk::ExcShournalk(const QString &text) :
Expand Down

0 comments on commit 6254bc5

Please sign in to comment.