Skip to content

Commit

Permalink
chore: update release scripts for v1.3.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
danil committed Apr 25, 2016
1 parent f5ed288 commit 815bd58
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.11/fhirbase-1.3.0.11.sql.zip \
https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.12/fhirbase-1.3.0.12.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 destroed and recreated!

PREV_FBVERSION="1.3.0.10"
FBVERSION="1.3.0.11"
PREV_FBVERSION="1.3.0.11"
FBVERSION="1.3.0.12"

PREV_FBRELEASEDATE="2016-04-20T15:00:00Z"
FBRELEASEDATE="2016-04-22T09:00:00Z"
PREV_FBRELEASEDATE="2016-04-22T09:00:00Z"
FBRELEASEDATE="2016-04-25T15: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.11'
fhirbase_version = -> '1.3.0.12'

exports.fhirbase_version = fhirbase_version

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

fhirbase_release_date = -> '2016-04-22T09:00:00Z'
fhirbase_release_date = -> '2016-04-25T15: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.11/fhirbase-1.3.0.11.sql.zip | funzip | psql -d fhir" \
echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.12/fhirbase-1.3.0.12.sql.zip | funzip | psql -d fhir" \
| sudo -u postgres sh || exit 1

echo "listen_addresses = '*'" \
Expand Down

0 comments on commit 815bd58

Please sign in to comment.