Skip to content

Commit

Permalink
Make release 1.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
arkhipov committed Sep 24, 2023
1 parent 420a846 commit 4b3fa95
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"
Expand All @@ -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": {
Expand All @@ -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",
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion temporal_tables--1.2.1.sql → temporal_tables--1.2.2.sql
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion temporal_tables.control
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4b3fa95

Please sign in to comment.