From 00c6737fd9d7841f6c32a176fcc1bba2b2e220ba Mon Sep 17 00:00:00 2001 From: "Brian J. Cardiff" Date: Wed, 20 Dec 2023 19:52:35 -0300 Subject: [PATCH] v0.28.0 --- CHANGELOG | 5 +++-- shard.yml | 2 +- src/pg/version.cr | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d98a28f9..263d0582 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,9 @@ -v?.?.? upcoming +v0.28.0 2023-12-21 ===================== * Add support for application_name in UIR paramaters and the PGAPPNAME env var (thanks @cyberdelia) * Fix error when used with non-postgres database drivers (thanks @ysbaddaden) +* Update crystal-db to 0.13 (thanks @jgaskins, @bcardiff) v0.27.0 2023-06-25 ===================== @@ -31,7 +32,7 @@ v0.25.0 2022-01-27 * Add support for decoding arrays of UUIDs (thanks @jwoertink) * Allow socket connections to have paramaters from URIs (thanks @grepsedawk) * Allow blocking connections to PG.connect_listen -* Properly encode null values in arrays (thanks @robcole and @grepsedawk) +* Properly encode null values in arrays (thanks @robcole and @grepsedawk) v0.24.0 2021-07-21 ===================== diff --git a/shard.yml b/shard.yml index f1a27717..1db65e06 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: pg -version: 0.27.0 +version: 0.28.0 dependencies: db: diff --git a/src/pg/version.cr b/src/pg/version.cr index 31fc3ca4..69f2f56a 100644 --- a/src/pg/version.cr +++ b/src/pg/version.cr @@ -1,3 +1,3 @@ module PG - VERSION = "0.27.0" + VERSION = "0.28.0" end