From 78421dcc30a59fb9fd9d7bfeda97009f7050f112 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Wed, 22 Nov 2023 21:10:39 +0100 Subject: [PATCH] chore: bump version to 1.5.0 We have at least a new feature (`--switch-threshold`) so this release can't be considered a bugfix. --- META.json | 4 ++-- doc/pg_repack.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/META.json b/META.json index 60598739..01cd1095 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "pg_repack", "abstract": "PostgreSQL module for data reorganization", "description": "Reorganize tables in PostgreSQL databases with minimal locks", - "version": "1.4.9", + "version": "1.5.0", "maintainer": [ "Beena Emerson ", "Josh Kupershmidt ", @@ -17,7 +17,7 @@ "provides": { "pg_repack": { "file": "lib/pg_repack.sql", - "version": "1.4.8", + "version": "1.5.0", "abstract": "Reorganize tables in PostgreSQL databases with minimal locks" } }, diff --git a/doc/pg_repack.rst b/doc/pg_repack.rst index b2e566ff..52dbd761 100644 --- a/doc/pg_repack.rst +++ b/doc/pg_repack.rst @@ -473,7 +473,7 @@ Creating indexes concurrently comes with a few caveats, please see `the document Releases -------- -* pg_repack 1.4.9 (unreleased) +* pg_repack 1.5.0 * Added support for PostgreSQL 16 * Fix possible SQL injection (issue #368)