From d54ca9e5e6fae863829b21211abdb9dc5d5e2449 Mon Sep 17 00:00:00 2001 From: Charlie Savage Date: Sat, 4 Feb 2023 22:04:46 -0600 Subject: [PATCH] Version 14.0.6 --- History.rdoc | 15 +++++++++++++++ lib/composite_primary_keys/version.rb | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/History.rdoc b/History.rdoc index 9d88a0e7..1b7663e6 100644 --- a/History.rdoc +++ b/History.rdoc @@ -1,3 +1,7 @@ +== 14.0.6 (2023-02-04) +* Port fix for #573 (Charlie Savage) +* Port fix for fix #577 (Charlie Savage) + == 14.0.5 (2023-02-04) * Improve query generation for cpk_in_predicate. This reduces the length of queries when loading many keys and enables Postgres to use index scans @@ -27,6 +31,17 @@ more frequently. (Andrew Kiellor) == 14.0.0 (2022-01-9) * Update to ActiveRecord 7.0 (Sammy Larbi) +== 13.0.7 (2023-02-04) +* Fix #573 (Charlie Savage) + +== 13.0.6 (2023-02-04) +* Fix #577 (Charlie Savage) + +== 13.0.5 (2023-02-04) +* Improve query generation for cpk_in_predicate. This reduces the length of +queries when loading many keys and enables Postgres to use index scans +more frequently. (Andrew Kiellor) + == 13.0.4 (2022-12-05) * Fix previously_new_record? not being set to true after create (Akinori MUSHA) diff --git a/lib/composite_primary_keys/version.rb b/lib/composite_primary_keys/version.rb index d30fe187..98a46580 100644 --- a/lib/composite_primary_keys/version.rb +++ b/lib/composite_primary_keys/version.rb @@ -2,7 +2,7 @@ module CompositePrimaryKeys module VERSION MAJOR = 14 MINOR = 0 - TINY = 5 + TINY = 6 STRING = [MAJOR, MINOR, TINY].join('.') end end