diff --git a/perf/perf b/perf/perf index 9086b78..2fb389f 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.20/fhirbase-1.3.0.20.sql.zip \ + https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.21/fhirbase-1.3.0.21.sql.zip \ | funzip ; } \ | psql [[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1 diff --git a/release.sh b/release.sh index 494b72d..87512d9 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.19" -FBVERSION="1.3.0.20" +PREV_FBVERSION="1.3.0.20" +FBVERSION="1.3.0.21" -PREV_FBRELEASEDATE="2016-06-02T09:00:00Z" -FBRELEASEDATE="2016-06-02T11:00:00Z" +PREV_FBRELEASEDATE="2016-06-02T11:00:00Z" +FBRELEASEDATE="2016-06-07T17: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 d45b7e6..7a1552d 100644 --- a/src/core/fhirbase_version.coffee +++ b/src/core/fhirbase_version.coffee @@ -1,4 +1,4 @@ -fhirbase_version = -> '1.3.0.20' +fhirbase_version = -> '1.3.0.21' exports.fhirbase_version = fhirbase_version @@ -8,7 +8,7 @@ exports.fhirbase_version.plv8_signature = { immutable: true } -fhirbase_release_date = -> '2016-06-02T11:00:00Z' +fhirbase_release_date = -> '2016-06-07T17:00:00Z' exports.fhirbase_release_date = fhirbase_release_date diff --git a/vagrant/provision/provision-environment.sh b/vagrant/provision/provision-environment.sh index 76acf82..0f82009 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.20/fhirbase-1.3.0.20.sql.zip | funzip | psql -d fhir" \ +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" \ | sudo -u postgres sh || exit 1 echo "listen_addresses = '*'" \