Skip to content

Commit

Permalink
Make release 1.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
arkhipov committed Mar 30, 2023
1 parent bfa7036 commit cf4a0b5
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-win.yml
Expand Up @@ -123,7 +123,7 @@ jobs:
Copy ".\*.sql" ".\package\share\extension"
Copy ".\*.control" ".\package\share\extension"
Compress-Archive -Path ".\package\*" -DestinationPath temporal_tables-pg${{ env.PG_VERSION }}${{ env.X64 }}.zip
Compress-Archive -Path ".\package\*" -DestinationPath temporal_tables-pg${{ env.PG_VERSION }}-${{ matrix.platform }}.zip
- name: Deploy Artifacts
uses: softprops/action-gh-release@v1
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG
Expand Up @@ -15,3 +15,6 @@ Version 1.1.1, released 2017-01-16

Version 1.2.0, released 2017-11-07
- PostgreSQL 10 support

Version 1.2.1, released 2023-03-30
- PostgreSQL 12-15 support
5 changes: 3 additions & 2 deletions GNUmakefile
Expand Up @@ -4,12 +4,13 @@ MODULE_big = temporal_tables
OBJS = temporal_tables.o versioning.o

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

REGRESS = install no_system_period invalid_system_period \
Expand Down
6 changes: 3 additions & 3 deletions META.json
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.0",
"version": "1.2.1",
"release_status": "stable",
"maintainer": [
"Vladislav Arkhipov <vlad@arkhipov.ru>"
Expand All @@ -11,9 +11,9 @@
"provides": {
"temporal_tables": {
"abstract": "Temporal Tables Extension",
"file": "temporal_tables--1.2.0.sql",
"file": "temporal_tables--1.2.1.sql",
"docfile": "README.md",
"version": "1.2.0"
"version": "1.2.1"
}
},
"prereqs": {
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion temporal_tables--1.2.0.sql → temporal_tables--1.2.1.sql
@@ -1,4 +1,4 @@
/* temporal_tables/temporal_tables--1.2.0.sql */
/* temporal_tables/temporal_tables--1.2.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.control
@@ -1,5 +1,5 @@
# versioning extension
comment = 'temporal tables'
default_version = '1.2.0'
default_version = '1.2.1'
module_pathname = '$libdir/temporal_tables'
relocatable = true

0 comments on commit cf4a0b5

Please sign in to comment.