From 8bd77852eee7fe05860f16a00862376387bdf050 Mon Sep 17 00:00:00 2001 From: Danil Kutkevich Date: Thu, 2 Jun 2016 12:44:59 +0300 Subject: [PATCH] chore: update release scripts for v1.3.0.19 --- perf/perf | 2 +- release.sh | 8 ++++---- src/core/fhirbase_version.coffee | 4 ++-- vagrant/provision/provision-environment.sh | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/perf/perf b/perf/perf index bd852c9..a949ea4 100755 --- a/perf/perf +++ b/perf/perf @@ -118,7 +118,7 @@ EOF echo Install Fhirbase into $PGDATABASE.$pg_schema database. { echo "SET search_path TO $pg_schema;" \ && curl --location \ - https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.18/fhirbase-1.3.0.18.sql.zip \ + https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.19/fhirbase-1.3.0.19.sql.zip \ | funzip ; } \ | psql [[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1 diff --git a/release.sh b/release.sh index 96e0721..3e5781b 100755 --- a/release.sh +++ b/release.sh @@ -7,11 +7,11 @@ set -e # DATABASE_URL=postgres://your_user_name:your_password@localhost:5432/fhirbase_build # WARNING: `fhirbase_build` database will be destroyed and recreated! -PREV_FBVERSION="1.3.0.17" -FBVERSION="1.3.0.18" +PREV_FBVERSION="1.3.0.18" +FBVERSION="1.3.0.19" -PREV_FBRELEASEDATE="2016-05-31T23:00:00Z" -FBRELEASEDATE="2016-06-01T13:00:00Z" +PREV_FBRELEASEDATE="2016-06-01T13:00:00Z" +FBRELEASEDATE="2016-06-02T09:00:00Z" PREV_FHIRVERSION="1.3.0" FHIRVERSION="1.3.0" diff --git a/src/core/fhirbase_version.coffee b/src/core/fhirbase_version.coffee index 007f2e0..7eec62d 100644 --- a/src/core/fhirbase_version.coffee +++ b/src/core/fhirbase_version.coffee @@ -1,4 +1,4 @@ -fhirbase_version = -> '1.3.0.18' +fhirbase_version = -> '1.3.0.19' exports.fhirbase_version = fhirbase_version @@ -8,7 +8,7 @@ exports.fhirbase_version.plv8_signature = { immutable: true } -fhirbase_release_date = -> '2016-06-01T13:00:00Z' +fhirbase_release_date = -> '2016-06-02T09:00:00Z' exports.fhirbase_release_date = fhirbase_release_date diff --git a/vagrant/provision/provision-environment.sh b/vagrant/provision/provision-environment.sh index 4e0e2ce..d83992f 100755 --- a/vagrant/provision/provision-environment.sh +++ b/vagrant/provision/provision-environment.sh @@ -6,7 +6,7 @@ echo "createuser -s fhir" | sudo -u postgres sh || exit 1 echo "psql -d postgres -c 'create database fhir'" \ | sudo -u postgres sh || exit 1 -echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.18/fhirbase-1.3.0.18.sql.zip | funzip | psql -d fhir" \ +echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.19/fhirbase-1.3.0.19.sql.zip | funzip | psql -d fhir" \ | sudo -u postgres sh || exit 1 echo "listen_addresses = '*'" \