diff --git a/cmake/dmitigr_pgfe.cmake b/cmake/dmitigr_pgfe.cmake index 3876f03..1eeef15 100644 --- a/cmake/dmitigr_pgfe.cmake +++ b/cmake/dmitigr_pgfe.cmake @@ -18,7 +18,7 @@ # Info # ------------------------------------------------------------------------------ -dmitigr_libs_set_library_info(pgfe 2 1 0 "PostgreSQL client API") +dmitigr_libs_set_library_info(pgfe 2 1 1 "PostgreSQL client API") # ------------------------------------------------------------------------------ # Sources diff --git a/src/pgfe/version.hpp b/src/pgfe/version.hpp index 3fd4ece..4702c97 100644 --- a/src/pgfe/version.hpp +++ b/src/pgfe/version.hpp @@ -31,7 +31,7 @@ constexpr std::int_fast32_t version() noexcept // Actual values are set in CMakeLists.txt. constexpr std::int_least32_t major = 2; constexpr std::int_least32_t minor = 1; - constexpr std::int_least32_t patch = 0; + constexpr std::int_least32_t patch = 1; // 111.222.333 -> 111222333 return major*1000000 + minor*1000 + patch;