From ab8de80d8bddae219c6ba632cd5dcf4ab850af18 Mon Sep 17 00:00:00 2001 From: Danil Kutkevich Date: Wed, 8 Jun 2016 19:36:40 +0300 Subject: [PATCH] chore: update release scripts for v1.3.0.22 --- 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 2fb389f..9fdc07e 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.21/fhirbase-1.3.0.21.sql.zip \ + https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.22/fhirbase-1.3.0.22.sql.zip \ | funzip ; } \ | psql [[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1 diff --git a/release.sh b/release.sh index 87512d9..d549fc4 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.20" -FBVERSION="1.3.0.21" +PREV_FBVERSION="1.3.0.21" +FBVERSION="1.3.0.22" -PREV_FBRELEASEDATE="2016-06-02T11:00:00Z" -FBRELEASEDATE="2016-06-07T17:00:00Z" +PREV_FBRELEASEDATE="2016-06-07T17:00:00Z" +FBRELEASEDATE="2016-06-08T17: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 7a1552d..38f979c 100644 --- a/src/core/fhirbase_version.coffee +++ b/src/core/fhirbase_version.coffee @@ -1,4 +1,4 @@ -fhirbase_version = -> '1.3.0.21' +fhirbase_version = -> '1.3.0.22' exports.fhirbase_version = fhirbase_version @@ -8,7 +8,7 @@ exports.fhirbase_version.plv8_signature = { immutable: true } -fhirbase_release_date = -> '2016-06-07T17:00:00Z' +fhirbase_release_date = -> '2016-06-08T17:00:00Z' exports.fhirbase_release_date = fhirbase_release_date diff --git a/vagrant/provision/provision-environment.sh b/vagrant/provision/provision-environment.sh index 0f82009..8d96cc1 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.21/fhirbase-1.3.0.21.sql.zip | funzip | psql -d fhir" \ +echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.22/fhirbase-1.3.0.22.sql.zip | funzip | psql -d fhir" \ | sudo -u postgres sh || exit 1 echo "listen_addresses = '*'" \