From 7e1248384e16742653c433239fef4f6eb85c546d Mon Sep 17 00:00:00 2001 From: Danil Kutkevich Date: Fri, 1 Apr 2016 11:50:27 +0300 Subject: [PATCH] chore: update release scripts for v1.3.0.2 --- perf/perf | 2 +- release.sh | 4 ++-- src/core/version.coffee | 2 +- vagrant/provision/provision-environment.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/perf/perf b/perf/perf index 4d3aea8..c64b984 100755 --- a/perf/perf +++ b/perf/perf @@ -112,7 +112,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.2.0.1/fhirbase-1.3.0.2.0.1.sql.zip \ + https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.2/fhirbase-1.3.0.2.sql.zip \ | funzip ; } \ | psql [[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1 diff --git a/release.sh b/release.sh index fac4872..02d0a8c 100755 --- a/release.sh +++ b/release.sh @@ -7,8 +7,8 @@ set -e # DATABASE_URL=postgres://your_user_name:your_password@localhost:5432/fhirbase_build # WARNING: `fhirbase_build` database will be destroed and recreated! -PREV_FBVERSION="0.0.1-beta.29" -FBVERSION="1.3.0.2.0.1" +PREV_FBVERSION="1.3.0.2.0.1" +FBVERSION="1.3.0.2" PGOPTIONS='--client-min-messages=warning' loadcmd="psql --no-psqlrc --quiet --echo-all --single-transaction \ diff --git a/src/core/version.coffee b/src/core/version.coffee index 347cb1c..fe14a6b 100644 --- a/src/core/version.coffee +++ b/src/core/version.coffee @@ -1,4 +1,4 @@ -fhirbase_version = -> '1.3.0.2.0.1' +fhirbase_version = -> '1.3.0.2' exports.fhirbase_version = fhirbase_version diff --git a/vagrant/provision/provision-environment.sh b/vagrant/provision/provision-environment.sh index 0122a65..f1a1ad8 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.2.0.1/fhirbase-1.3.0.2.0.1.sql.zip | funzip | psql -d fhir" \ +echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.2/fhirbase-1.3.0.2.sql.zip | funzip | psql -d fhir" \ | sudo -u postgres sh || exit 1 echo "listen_addresses = '*'" \