Skip to content

Commit

Permalink
Stamp v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vik Fearing committed Sep 21, 2020
1 parent b3e7d54 commit a5de4f7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
3 changes: 1 addition & 2 deletions expected/install.out
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion periods.control
Original file line number Diff line number Diff line change
@@ -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'
3 changes: 1 addition & 2 deletions sql/install.sql
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a5de4f7

Please sign in to comment.