From 7af75a4690c7f421513035b991c861d85eeeaf9b Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Fri, 6 Sep 2024 17:20:02 +0200 Subject: [PATCH] Bump VERSION to 1.5.8 and add changelog entry --- History.md | 6 ++++++ lib/pg/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index 234d4b86..eaf735b8 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,9 @@ +## v1.5.8 [2024-09-06] Lars Kanis + +- Fix host list duplication every time conn.reset is used. [#586](https://github.com/ged/ruby-pg/pull/586) +- Add default decoder for anonymous record types to BasicTypeRegistry [#579](https://github.com/ged/ruby-pg/pull/579) + + ## v1.5.7 [2024-07-28] Lars Kanis - Remove deprecated use of fptr->fd.[#562](https://github.com/ged/ruby-pg/pull/562) diff --git a/lib/pg/version.rb b/lib/pg/version.rb index 398b651d..23eab4bb 100644 --- a/lib/pg/version.rb +++ b/lib/pg/version.rb @@ -1,4 +1,4 @@ module PG # Library version - VERSION = '1.5.7' + VERSION = '1.5.8' end