Prepare the repo for next development cycle

This commit is contained in:
Rob Kiefer 2017-10-13 10:34:42 -04:00 committed by RobAtticus
parent f97d624359
commit aceb2e9835
5 changed files with 3 additions and 2 deletions

View File

@ -4,3 +4,4 @@ sql/timescaledb--0.3.0--0.4.0.sql
sql/timescaledb--0.4.0--0.4.1.sql
sql/timescaledb--0.4.1--0.4.2.sql
sql/timescaledb--0.4.2--0.5.0.sql
sql/timescaledb--0.5.0--0.6.0.sql

View File

@ -38,7 +38,7 @@ cleanup() {
# function
status="$?"
set +e # do not exit immediately on failure in cleanup handler
if [ $status -eq 0 ]; then
if [ $status -eq 0 ]; then
rm -rf ${PGTEST_TMPDIR}
fi
docker rm -vf timescaledb-orig timescaledb-clean timescaledb-updated 2>/dev/null

View File

View File

View File

@ -1,6 +1,6 @@
# timescaledb extension
comment = 'Enables scalable inserts and complex queries for time-series data'
default_version = '0.6.0'
default_version = '0.7.0-dev'
module_pathname = '$libdir/timescaledb'
#extension cannot be relocatable once installed because it uses multiple schemas and that is forbidden by PG.
#(though this extension is relocatable during installation).