From a5de4f7a3add55255c45221a504653b9e0e8a28a Mon Sep 17 00:00:00 2001 From: Vik Fearing Date: Mon, 21 Sep 2020 15:33:08 +0200 Subject: [PATCH] Stamp v1.2 --- CHANGELOG.md | 8 +++++++- expected/install.out | 3 +-- periods.control | 2 +- sql/install.sql | 3 +-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f19db1..6af7bc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Added +### Fixed + +## [1.2] – 2020-09-21 + ### Added - Add Access Control to prevent users from modifying the history. Only the table owner @@ -60,6 +65,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Initial release. Supports all features of the SQL Standard concerning periods and `SYSTEM VERSIONING`. -[Unreleased]: https://github.com/xocolatl/periods/compare/v1.1...HEAD +[Unreleased]: https://github.com/xocolatl/periods/compare/v1.2...HEAD +[1.2]: https://github.com/xocolatl/periods/compare/v1.1...v1.2 [1.1]: https://github.com/xocolatl/periods/compare/v1.0...v1.1 [1.0]: https://github.com/xocolatl/periods/releases/tag/v1.0 diff --git a/expected/install.out b/expected/install.out index 8beb21e..accb8e0 100644 --- a/expected/install.out +++ b/expected/install.out @@ -1,8 +1,7 @@ /* Once support for 9.5 has passed, use CASCADE */ CREATE EXTENSION IF NOT EXISTS btree_gist; /* Once support for 9.6 has passed, just create the extension */ -CREATE EXTENSION periods VERSION '1.1'; -ALTER EXTENSION periods UPDATE TO '1.2'; +CREATE EXTENSION periods VERSION '1.2'; SELECT extversion FROM pg_extension WHERE extname = 'periods'; diff --git a/periods.control b/periods.control index 8e1efc1..46be417 100644 --- a/periods.control +++ b/periods.control @@ -1,5 +1,5 @@ comment = 'Provide Standard SQL functionality for PERIODs and SYSTEM VERSIONING' -default_version = 1.1 +default_version = 1.2 module_pathname = '$libdir/periods' relocatable = false requires = 'btree_gist' diff --git a/sql/install.sql b/sql/install.sql index b08f371..05872f8 100644 --- a/sql/install.sql +++ b/sql/install.sql @@ -1,8 +1,7 @@ /* Once support for 9.5 has passed, use CASCADE */ CREATE EXTENSION IF NOT EXISTS btree_gist; /* Once support for 9.6 has passed, just create the extension */ -CREATE EXTENSION periods VERSION '1.1'; -ALTER EXTENSION periods UPDATE TO '1.2'; +CREATE EXTENSION periods VERSION '1.2'; SELECT extversion FROM pg_extension