Skip to content

Commit 99291b0

Browse files
committed
chore: update release scripts for v1.3.0.5
1 parent a43915d commit 99291b0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

perf/perf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ EOF
112112
echo Install Fhirbase into $PGDATABASE.$pg_schema database.
113113
{ echo "SET search_path TO $pg_schema;" \
114114
&& curl --location \
115-
https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.4/fhirbase-1.3.0.4.sql.zip \
115+
https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.5/fhirbase-1.3.0.5.sql.zip \
116116
| funzip ; } \
117117
| psql
118118
[[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1

release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ set -e
77
# DATABASE_URL=postgres://your_user_name:your_password@localhost:5432/fhirbase_build
88
# WARNING: `fhirbase_build` database will be destroed and recreated!
99

10-
PREV_FBVERSION="1.3.0.3"
11-
FBVERSION="1.3.0.4"
10+
PREV_FBVERSION="1.3.0.4"
11+
FBVERSION="1.3.0.5"
1212

1313
PGOPTIONS='--client-min-messages=warning'
1414
loadcmd="psql --no-psqlrc --quiet --echo-all --single-transaction \

src/core/version.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fhirbase_version = -> '1.3.0.4'
1+
fhirbase_version = -> '1.3.0.5'
22

33
exports.fhirbase_version = fhirbase_version
44

vagrant/provision/provision-environment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ echo "createuser -s fhir" | sudo -u postgres sh || exit 1
66
echo "psql -d postgres -c 'create database fhir'" \
77
| sudo -u postgres sh || exit 1
88

9-
echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.4/fhirbase-1.3.0.4.sql.zip | funzip | psql -d fhir" \
9+
echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.5/fhirbase-1.3.0.5.sql.zip | funzip | psql -d fhir" \
1010
| sudo -u postgres sh || exit 1
1111

1212
echo "listen_addresses = '*'" \

0 commit comments

Comments
 (0)