Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
niquola committed Jun 2, 2016
2 parents 4a0f95e + 8bd7785 commit 87d3518
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion perf/perf
Original file line number Diff line number Diff line change
Expand Up @@ -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.18/fhirbase-1.3.0.18.sql.zip \
https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.19/fhirbase-1.3.0.19.sql.zip \
| funzip ; } \
| psql
[[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1
Expand Down
8 changes: 4 additions & 4 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.17"
FBVERSION="1.3.0.18"
PREV_FBVERSION="1.3.0.18"
FBVERSION="1.3.0.19"

PREV_FBRELEASEDATE="2016-05-31T23:00:00Z"
FBRELEASEDATE="2016-06-01T13:00:00Z"
PREV_FBRELEASEDATE="2016-06-01T13:00:00Z"
FBRELEASEDATE="2016-06-02T09:00:00Z"

PREV_FHIRVERSION="1.3.0"
FHIRVERSION="1.3.0"
Expand Down
4 changes: 2 additions & 2 deletions src/core/fhirbase_version.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fhirbase_version = -> '1.3.0.18'
fhirbase_version = -> '1.3.0.19'

exports.fhirbase_version = fhirbase_version

Expand All @@ -8,7 +8,7 @@ exports.fhirbase_version.plv8_signature = {
immutable: true
}

fhirbase_release_date = -> '2016-06-01T13:00:00Z'
fhirbase_release_date = -> '2016-06-02T09:00:00Z'

exports.fhirbase_release_date = fhirbase_release_date

Expand Down
2 changes: 1 addition & 1 deletion vagrant/provision/provision-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.18/fhirbase-1.3.0.18.sql.zip | funzip | psql -d fhir" \
echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.19/fhirbase-1.3.0.19.sql.zip | funzip | psql -d fhir" \
| sudo -u postgres sh || exit 1

echo "listen_addresses = '*'" \
Expand Down

0 comments on commit 87d3518

Please sign in to comment.