From 4b3fa953fca560884e0570e6af5a0d56e7357370 Mon Sep 17 00:00:00 2001 From: Vlad Arkhipov Date: Sun, 24 Sep 2023 10:28:12 +0200 Subject: [PATCH] Make release 1.2.2. --- CHANGELOG | 3 +++ GNUmakefile | 5 +++-- META.json | 8 ++++---- temporal_tables--1.2.1--1.2.2.sql | 0 temporal_tables--1.2.1.sql => temporal_tables--1.2.2.sql | 2 +- temporal_tables.control | 2 +- 6 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 temporal_tables--1.2.1--1.2.2.sql rename temporal_tables--1.2.1.sql => temporal_tables--1.2.2.sql (92%) diff --git a/CHANGELOG b/CHANGELOG index 6ccf648..e6be236 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -18,3 +18,6 @@ Version 1.2.0, released 2017-11-07 Version 1.2.1, released 2023-03-30 - PostgreSQL 12-15 support + +Version 1.2.2, released 2023-09-24 + - PostgreSQL 16 support diff --git a/GNUmakefile b/GNUmakefile index 709767e..3eff5ae 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -4,13 +4,14 @@ MODULE_big = temporal_tables OBJS = temporal_tables.o versioning.o EXTENSION = temporal_tables -DATA = temporal_tables--1.2.1.sql \ +DATA = temporal_tables--1.2.2.sql \ temporal_tables--1.0.0--1.0.1.sql \ temporal_tables--1.0.1--1.0.2.sql \ temporal_tables--1.0.2--1.1.0.sql \ temporal_tables--1.1.0--1.1.1.sql \ temporal_tables--1.1.1--1.2.0.sql \ - temporal_tables--1.2.0--1.2.1.sql + temporal_tables--1.2.0--1.2.1.sql \ + temporal_tables--1.2.1--1.2.2.sql DOCS = README.md REGRESS = install no_system_period invalid_system_period \ diff --git a/META.json b/META.json index 84537d3..1e46692 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "temporal_tables", "abstract": "Temporal Tables Extension", "description": "This extension provides support for temporal tables. System-period data versioning (also known as transaction time or system time) allows you to specify that old rows are archived into another table (that is called the history table).", - "version": "1.2.1", + "version": "1.2.2", "release_status": "stable", "maintainer": [ "Vladislav Arkhipov " @@ -11,9 +11,9 @@ "provides": { "temporal_tables": { "abstract": "Temporal Tables Extension", - "file": "temporal_tables--1.2.1.sql", + "file": "temporal_tables--1.2.2.sql", "docfile": "README.md", - "version": "1.2.1" + "version": "1.2.2" } }, "prereqs": { @@ -24,7 +24,7 @@ } }, "resources": { - "homepage": "http://www.softus.org", + "homepage": "https://arkhipov.ru", "repository": { "url": "https://github.com/arkhipov/temporal_tables.git", "web": "https://github.com/arkhipov/temporal_tables", diff --git a/temporal_tables--1.2.1--1.2.2.sql b/temporal_tables--1.2.1--1.2.2.sql new file mode 100644 index 0000000..e69de29 diff --git a/temporal_tables--1.2.1.sql b/temporal_tables--1.2.2.sql similarity index 92% rename from temporal_tables--1.2.1.sql rename to temporal_tables--1.2.2.sql index 51377ed..cb3af21 100644 --- a/temporal_tables--1.2.1.sql +++ b/temporal_tables--1.2.2.sql @@ -1,4 +1,4 @@ -/* temporal_tables/temporal_tables--1.2.1.sql */ +/* temporal_tables/temporal_tables--1.2.2.sql */ -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION temporal_tables" to load this file.\quit diff --git a/temporal_tables.control b/temporal_tables.control index 81e9aaa..49dea8b 100644 --- a/temporal_tables.control +++ b/temporal_tables.control @@ -1,5 +1,5 @@ # versioning extension comment = 'temporal tables' -default_version = '1.2.1' +default_version = '1.2.2' module_pathname = '$libdir/temporal_tables' relocatable = true