From fbe8386d6025f367b16d8c2366a186859a31ace9 Mon Sep 17 00:00:00 2001 From: Danil Kutkevich Date: Fri, 1 Jul 2016 12:34:15 +0300 Subject: [PATCH] chore: update release scripts for v1.3.0.24 --- 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 0478806..9a86f8c 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.23/fhirbase-1.3.0.23.sql.zip \ + https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.24/fhirbase-1.3.0.24.sql.zip \ | funzip ; } \ | psql [[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1 diff --git a/release.sh b/release.sh index bbd04a8..84461f8 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.22" -FBVERSION="1.3.0.23" +PREV_FBVERSION="1.3.0.23" +FBVERSION="1.3.0.24" -PREV_FBRELEASEDATE="2016-06-08T17:00:00Z" -FBRELEASEDATE="2016-06-09T11:00:00Z" +PREV_FBRELEASEDATE="2016-06-09T11:00:00Z" +FBRELEASEDATE="2016-07-01T09: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 263f9c1..37752ee 100644 --- a/src/core/fhirbase_version.coffee +++ b/src/core/fhirbase_version.coffee @@ -1,4 +1,4 @@ -fhirbase_version = -> '1.3.0.23' +fhirbase_version = -> '1.3.0.24' exports.fhirbase_version = fhirbase_version @@ -8,7 +8,7 @@ exports.fhirbase_version.plv8_signature = { immutable: true } -fhirbase_release_date = -> '2016-06-09T11:00:00Z' +fhirbase_release_date = -> '2016-07-01T09:00:00Z' exports.fhirbase_release_date = fhirbase_release_date diff --git a/vagrant/provision/provision-environment.sh b/vagrant/provision/provision-environment.sh index 54371ff..20d372b 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.23/fhirbase-1.3.0.23.sql.zip | funzip | psql -d fhir" \ +echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.24/fhirbase-1.3.0.24.sql.zip | funzip | psql -d fhir" \ | sudo -u postgres sh || exit 1 echo "listen_addresses = '*'" \