Add missing pieces for version bump of #3482 (#3523)

pull/3522/head
Nils Dijk 2020-02-21 12:35:29 +01:00 committed by GitHub
parent 00d667c41d
commit 6ee82c381e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Citus extension
comment = 'Citus distributed database'
default_version = '9.2-2'
default_version = '9.3-1'
module_pathname = '$libdir/citus'
relocatable = false
schema = pg_catalog

View File

@ -1,4 +1,4 @@
/* citus----9.3-1 */
/* citus--9.2-2--9.3-1 */
/* bump version to 9.3-1 */

View File

@ -111,6 +111,7 @@ ALTER EXTENSION citus UPDATE TO '9.0-1';
ALTER EXTENSION citus UPDATE TO '9.0-2';
ALTER EXTENSION citus UPDATE TO '9.1-1';
ALTER EXTENSION citus UPDATE TO '9.2-1';
ALTER EXTENSION citus UPDATE TO '9.3-1';
-- show running version
SHOW citus.version;
citus.version

View File

@ -112,6 +112,7 @@ ALTER EXTENSION citus UPDATE TO '9.0-1';
ALTER EXTENSION citus UPDATE TO '9.0-2';
ALTER EXTENSION citus UPDATE TO '9.1-1';
ALTER EXTENSION citus UPDATE TO '9.2-1';
ALTER EXTENSION citus UPDATE TO '9.3-1';
-- show running version
SHOW citus.version;

View File

@ -9,7 +9,7 @@ BEFORE_CITUS_UPGRADE_COORD_SCHEDULE = './before_citus_upgrade_coord_schedule'
MASTER = 'master'
# This should be updated when citus version changes
MASTER_VERSION = '9.2'
MASTER_VERSION = '9.3'
HOME = expanduser("~")