diff --git a/perf/perf b/perf/perf index 4547e78..85b4879 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/v0.0.1-beta.26/fhirbase-0.0.1-beta.26.sql.zip \ + https://github.com/fhirbase/fhirbase-plv8/releases/download/v0.0.1-beta.27/fhirbase-0.0.1-beta.27.sql.zip \ | funzip ; } \ | psql [[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1 diff --git a/release.sh b/release.sh index 0bceaf4..5bfb1d8 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.25" -FBVERSION="0.0.1-beta.26" +PREV_FBVERSION="0.0.1-beta.26" +FBVERSION="0.0.1-beta.27" 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 4f7cc1f..bf0dd19 100644 --- a/src/core/version.coffee +++ b/src/core/version.coffee @@ -1,4 +1,4 @@ -fhirbase_version = ()-> '0.0.1-beta.26' +fhirbase_version = ()-> '0.0.1-beta.27' exports.fhirbase_version = fhirbase_version diff --git a/vagrant/provision/provision-environment.sh b/vagrant/provision/provision-environment.sh index 0ec62e3..10abe0a 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/v0.0.1-beta.26/fhirbase-0.0.1-beta.26.sql.zip | funzip | psql -d fhir" \ +echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v0.0.1-beta.27/fhirbase-0.0.1-beta.27.sql.zip | funzip | psql -d fhir" \ | sudo -u postgres sh || exit 1 echo "listen_addresses = '*'" \