Skip to content

Commit

Permalink
Version 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
arkhipov committed Nov 6, 2017
1 parent 0240304 commit 294cd53
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ Version 1.1.0, released 2016-06-12

Version 1.1.1, released 2017-01-16
- memory leak fixed

Version 1.2.0, released 2017-11-07
- PostgreSQL 10 support
5 changes: 3 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ MODULE_big = temporal_tables
OBJS = temporal_tables.o versioning.o

EXTENSION = temporal_tables
DATA = temporal_tables--1.1.1.sql \
DATA = temporal_tables--1.2.0.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.0--1.1.1.sql \
temporal_tables--1.1.1--1.2.0.sql
DOCS = README.md

REGRESS = install no_system_period invalid_system_period \
Expand Down
6 changes: 3 additions & 3 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.1.1",
"version": "1.2.0",
"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.1.1.sql",
"file": "temporal_tables--1.2.0.sql",
"docfile": "README.md",
"version": "1.1.1"
"version": "1.2.0"
}
},
"prereqs": {
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion temporal_tables--1.1.1.sql → temporal_tables--1.2.0.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* temporal_tables/temporal_tables--1.1.1.sql */
/* temporal_tables/temporal_tables--1.2.0.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.1.1'
default_version = '1.2.0'
module_pathname = '$libdir/temporal_tables'
relocatable = true

0 comments on commit 294cd53

Please sign in to comment.