diff --git a/CMakeLists.txt b/CMakeLists.txt index de7440be..defb3c8b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ if(${CMAKE_VERSION} VERSION_LESS 3.12) endif() project(filter_spirit - VERSION 1.2.2 + VERSION 1.3.2 DESCRIPTION "advanced item filter generator for the game Path of Exile using own DSL and online APIs" LANGUAGES C CXX) diff --git a/src/lib/fs/version.hpp b/src/lib/fs/version.hpp index 1e1efed3..6d1edbb6 100644 --- a/src/lib/fs/version.hpp +++ b/src/lib/fs/version.hpp @@ -16,7 +16,7 @@ struct version_triplet constexpr version_triplet current() noexcept { - return {1, 2, 2}; + return {1, 3, 2}; } // C++20: use operator<=>