Skip to content

Commit

Permalink
Bump version to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitigr committed Nov 25, 2022
1 parent 674269d commit cc3fc4e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@

## [Unreleased]

## [Changes][2.0.2] in v2.0.2 relative to v2.0.1

- Relaxed exception guarantees in Statement API;
- updated error conditions to match PostgreSQL 15.1.

## [Changes][2.0.1] in v2.0.1 relative to v2.0.0

- Fixed build on older GCC (tested on GCC 9);
- fixed build on macOS;
- fixed build with libpq older than from PostgreSQL 14.

[Unreleased]: https://github.com/dmitigr/pgfe/compare/v2.0.1...HEAD
[Unreleased]: https://github.com/dmitigr/pgfe/compare/v2.0.2...HEAD
[2.0.2]: https://github.com/dmitigr/pgfe/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/dmitigr/pgfe/compare/v2.0.0...v2.0.1
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 0 1 "PostgreSQL client API")
dmitigr_libs_set_library_info(pgfe 2 0 2 "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 = 0;
constexpr std::int_least32_t patch = 1;
constexpr std::int_least32_t patch = 2;

// 111.222.333 -> 111222333
return major*1000000 + minor*1000 + patch;
Expand Down

0 comments on commit cc3fc4e

Please sign in to comment.