Skip to content

Commit

Permalink
chore(release): cut 1.5.0 [skip ci]
Browse files Browse the repository at this point in the history
# [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))
  • Loading branch information
@dhis2-bot committed Aug 15, 2019
1 parent 95fd038 commit be580c1
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [1.5.0](https://github.com/dhis2/app-runtime/compare/v1.4.3...v1.5.0) (2019-08-15)


### Bug Fixes

* don't silently ignore test failures, fix data reduce bug ([95fd038](https://github.com/dhis2/app-runtime/commit/95fd038))


### Features

* support network request aborting and refetching ([#34](https://github.com/dhis2/app-runtime/issues/34)) ([dcb4a70](https://github.com/dhis2/app-runtime/commit/dcb4a70))

## [1.4.3](https://github.com/dhis2/app-runtime/compare/v1.4.2...v1.4.3) (2019-08-14)


Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@
"format": "d2-style js apply --all --no-stage",
"start": "yarn build && cd examples/cra && yarn start"
},
"version": "1.4.3"
}
"version": "1.5.0"
}
6 changes: 3 additions & 3 deletions runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dhis2/app-runtime",
"description": "A singular runtime dependency for applications on the DHIS2 platform",
"version": "1.4.3",
"version": "1.5.0",
"main": "build/cjs/index.js",
"module": "build/es/index.js",
"types": "build/types/index.d.ts",
Expand All @@ -19,8 +19,8 @@
"build/**"
],
"devDependencies": {
"@dhis2/app-service-config": "1.4.3",
"@dhis2/app-service-data": "1.4.3"
"@dhis2/app-service-config": "1.5.0",
"@dhis2/app-service-data": "1.5.0"
},
"peerDependencies": {
"prop-types": "^15.7.2",
Expand Down
2 changes: 1 addition & 1 deletion services/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-config",
"version": "1.4.3",
"version": "1.5.0",
"main": "build/cjs/index.js",
"module": "build/es/index.js",
"types": "build/types/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions services/data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-data",
"version": "1.4.3",
"version": "1.5.0",
"main": "build/cjs/index.js",
"module": "build/es/index.js",
"types": "build/types/index.d.ts",
Expand All @@ -12,7 +12,7 @@
"build/**"
],
"peerDependencies": {
"@dhis2/app-service-config": "1.4.3",
"@dhis2/app-service-config": "1.5.0",
"prop-types": "^15.7.2",
"react": "^16.8",
"react-dom": "^16.8"
Expand Down

0 comments on commit be580c1

Please sign in to comment.