Skip to content

Commit

Permalink
Version 1.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
arkhipov committed Jan 16, 2017
1 parent 2167390 commit 81f1c43
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ Version 1.0.2, released 2015-08-02

Version 1.1.0, released 2016-06-12
- user-defined system time

Version 1.1.1, released 2017-01-16
- memory leak fixed
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2016, Vladislav Arkhipov <[email protected]>
Copyright (c) 2012-2017, Vladislav Arkhipov <[email protected]>
All rights reserved.

Redistribution and use in source and binary forms, with or without
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.0",
"version": "1.1.1",
"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.0.sql",
"file": "temporal_tables--1.1.1.sql",
"docfile": "README.md",
"version": "1.1.0"
"version": "1.1.1"
}
},
"prereqs": {
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ MODULE_big = temporal_tables
OBJS = temporal_tables.o versioning.o

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

REGRESS = install no_system_period invalid_system_period \
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion temporal_tables--1.1.0.sql → temporal_tables--1.1.1.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* temporal_tables/temporal_tables--1.1.0.sql */
/* temporal_tables/temporal_tables--1.1.1.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.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* temporal_tables.c
*
* Copyright (c) 2012-2016 Vladislav Arkhipov <[email protected]>
* Copyright (c) 2012-2017 Vladislav Arkhipov <[email protected]>
*
* -------------------------------------------------------------------------
*/
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.0'
default_version = '1.1.1'
module_pathname = '$libdir/temporal_tables'
relocatable = true
2 changes: 1 addition & 1 deletion temporal_tables.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* temporal_tables.h
*
* Copyright (c) 2012-2016 Vladislav Arkhipov <[email protected]>
* Copyright (c) 2012-2017 Vladislav Arkhipov <[email protected]>
*
* -------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion versioning.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* versioning.c
*
* Copyright (c) 2012-2016 Vladislav Arkhipov <[email protected]>
* Copyright (c) 2012-2017 Vladislav Arkhipov <[email protected]>
*
* -------------------------------------------------------------------------
*/
Expand Down

0 comments on commit 81f1c43

Please sign in to comment.