Skip to content

Commit fbe8386

Browse files
committed
chore: update release scripts for v1.3.0.24
1 parent c3db771 commit fbe8386

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

perf/perf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ EOF
118118
echo Install Fhirbase into $PGDATABASE.$pg_schema database.
119119
{ echo "SET search_path TO $pg_schema;" \
120120
&& curl --location \
121-
https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.23/fhirbase-1.3.0.23.sql.zip \
121+
https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.24/fhirbase-1.3.0.24.sql.zip \
122122
| funzip ; } \
123123
| psql
124124
[[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1

release.sh

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

10-
PREV_FBVERSION="1.3.0.22"
11-
FBVERSION="1.3.0.23"
10+
PREV_FBVERSION="1.3.0.23"
11+
FBVERSION="1.3.0.24"
1212

13-
PREV_FBRELEASEDATE="2016-06-08T17:00:00Z"
14-
FBRELEASEDATE="2016-06-09T11:00:00Z"
13+
PREV_FBRELEASEDATE="2016-06-09T11:00:00Z"
14+
FBRELEASEDATE="2016-07-01T09:00:00Z"
1515

1616
PREV_FHIRVERSION="1.3.0"
1717
FHIRVERSION="1.3.0"

src/core/fhirbase_version.coffee

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fhirbase_version = -> '1.3.0.23'
1+
fhirbase_version = -> '1.3.0.24'
22

33
exports.fhirbase_version = fhirbase_version
44

@@ -8,7 +8,7 @@ exports.fhirbase_version.plv8_signature = {
88
immutable: true
99
}
1010

11-
fhirbase_release_date = -> '2016-06-09T11:00:00Z'
11+
fhirbase_release_date = -> '2016-07-01T09:00:00Z'
1212

1313
exports.fhirbase_release_date = fhirbase_release_date
1414

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.23/fhirbase-1.3.0.23.sql.zip | funzip | psql -d fhir" \
9+
echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.24/fhirbase-1.3.0.24.sql.zip | funzip | psql -d fhir" \
1010
| sudo -u postgres sh || exit 1
1111

1212
echo "listen_addresses = '*'" \

0 commit comments

Comments
 (0)