Skip to content

Commit be580c1

Browse files
author
@dhis2-bot
committed
chore(release): cut 1.5.0 [skip ci]
# [1.5.0](v1.4.3...v1.5.0) (2019-08-15) ### Bug Fixes * don't silently ignore test failures, fix data reduce bug ([95fd038](95fd038)) ### Features * support network request aborting and refetching ([#34](#34)) ([dcb4a70](dcb4a70))
1 parent 95fd038 commit be580c1

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [1.5.0](https://github.com/dhis2/app-runtime/compare/v1.4.3...v1.5.0) (2019-08-15)
2+
3+
4+
### Bug Fixes
5+
6+
* don't silently ignore test failures, fix data reduce bug ([95fd038](https://github.com/dhis2/app-runtime/commit/95fd038))
7+
8+
9+
### Features
10+
11+
* support network request aborting and refetching ([#34](https://github.com/dhis2/app-runtime/issues/34)) ([dcb4a70](https://github.com/dhis2/app-runtime/commit/dcb4a70))
12+
113
## [1.4.3](https://github.com/dhis2/app-runtime/compare/v1.4.2...v1.4.3) (2019-08-14)
214

315

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
"format": "d2-style js apply --all --no-stage",
5757
"start": "yarn build && cd examples/cra && yarn start"
5858
},
59-
"version": "1.4.3"
60-
}
59+
"version": "1.5.0"
60+
}

runtime/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dhis2/app-runtime",
33
"description": "A singular runtime dependency for applications on the DHIS2 platform",
4-
"version": "1.4.3",
4+
"version": "1.5.0",
55
"main": "build/cjs/index.js",
66
"module": "build/es/index.js",
77
"types": "build/types/index.d.ts",
@@ -19,8 +19,8 @@
1919
"build/**"
2020
],
2121
"devDependencies": {
22-
"@dhis2/app-service-config": "1.4.3",
23-
"@dhis2/app-service-data": "1.4.3"
22+
"@dhis2/app-service-config": "1.5.0",
23+
"@dhis2/app-service-data": "1.5.0"
2424
},
2525
"peerDependencies": {
2626
"prop-types": "^15.7.2",

services/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dhis2/app-service-config",
3-
"version": "1.4.3",
3+
"version": "1.5.0",
44
"main": "build/cjs/index.js",
55
"module": "build/es/index.js",
66
"types": "build/types/index.d.ts",

services/data/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dhis2/app-service-data",
3-
"version": "1.4.3",
3+
"version": "1.5.0",
44
"main": "build/cjs/index.js",
55
"module": "build/es/index.js",
66
"types": "build/types/index.d.ts",
@@ -12,7 +12,7 @@
1212
"build/**"
1313
],
1414
"peerDependencies": {
15-
"@dhis2/app-service-config": "1.4.3",
15+
"@dhis2/app-service-config": "1.5.0",
1616
"prop-types": "^15.7.2",
1717
"react": "^16.8",
1818
"react-dom": "^16.8"

0 commit comments

Comments
 (0)