Skip to content

Commit

Permalink
Bump version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitigr committed Dec 10, 2022
1 parent 164594c commit 19b650e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/dmitigr_pgfe.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/pgfe/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 19b650e

Please sign in to comment.