Skip to content

Commit

Permalink
chore(release): cut 3.2.0 [skip ci]
Browse files Browse the repository at this point in the history
# [3.2.0](v3.1.0...v3.2.0) (2021-09-17)

### Bug Fixes

* **offline:** return correct value from clearSensitiveCaches ([#1008](#1008)) ([4b68b22](4b68b22))

### Features

* **offline:** add 'clear sensitive caches' function ([01749aa](01749aa))
  • Loading branch information
dhis2-bot committed Sep 17, 2021
1 parent dfea957 commit c69e569
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 12 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,15 @@
# [3.2.0](https://github.com/dhis2/app-runtime/compare/v3.1.0...v3.2.0) (2021-09-17)


### Bug Fixes

* **offline:** return correct value from clearSensitiveCaches ([#1008](https://github.com/dhis2/app-runtime/issues/1008)) ([4b68b22](https://github.com/dhis2/app-runtime/commit/4b68b22cf7adc5c335c98d4746e20f602ecbbc85))


### Features

* **offline:** add 'clear sensitive caches' function ([01749aa](https://github.com/dhis2/app-runtime/commit/01749aa9fe16e6b2329bc7bea76e05cf81e39757))

# [3.1.0](https://github.com/dhis2/app-runtime/compare/v3.0.0...v3.1.0) (2021-09-13)


Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,5 +1,5 @@
{
"version": "3.1.0",
"version": "3.2.0",
"description": "A singular runtime dependency for applications on the DHIS2 platform",
"repository": "https://github.com/dhis2/app-runtime.git",
"author": "Austin McGee <austin@dhis2.org>",
Expand Down
10 changes: 5 additions & 5 deletions runtime/package.json
@@ -1,7 +1,7 @@
{
"name": "@dhis2/app-runtime",
"description": "A singular runtime dependency for applications on the DHIS2 platform",
"version": "3.1.0",
"version": "3.2.0",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "./build/types/index.d.ts",
Expand All @@ -23,10 +23,10 @@
"build/**"
],
"dependencies": {
"@dhis2/app-service-config": "3.1.0",
"@dhis2/app-service-data": "3.1.0",
"@dhis2/app-service-alerts": "3.1.0",
"@dhis2/app-service-offline": "3.1.0"
"@dhis2/app-service-config": "3.2.0",
"@dhis2/app-service-data": "3.2.0",
"@dhis2/app-service-alerts": "3.2.0",
"@dhis2/app-service-offline": "3.2.0"
},
"peerDependencies": {
"prop-types": "^15.7.2",
Expand Down
2 changes: 1 addition & 1 deletion services/alerts/package.json
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-alerts",
"version": "3.1.0",
"version": "3.2.0",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "./build/types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion services/config/package.json
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-config",
"version": "3.1.0",
"version": "3.2.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
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-data",
"version": "3.1.0",
"version": "3.2.0",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "build/types/index.d.ts",
Expand All @@ -22,7 +22,7 @@
"build/**"
],
"peerDependencies": {
"@dhis2/app-service-config": "3.1.0",
"@dhis2/app-service-config": "3.2.0",
"@dhis2/cli-app-scripts": "^7.1.1",
"prop-types": "^15.7.2",
"react": "^16.8",
Expand Down
4 changes: 2 additions & 2 deletions services/offline/package.json
@@ -1,7 +1,7 @@
{
"name": "@dhis2/app-service-offline",
"description": "A runtime service for online/offline detection and offline caching",
"version": "3.1.0",
"version": "3.2.0",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "build/types/index.d.ts",
Expand Down Expand Up @@ -33,7 +33,7 @@
"coverage": "yarn test --coverage"
},
"peerDependencies": {
"@dhis2/app-service-alerts": "3.1.0",
"@dhis2/app-service-alerts": "3.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
Expand Down

0 comments on commit c69e569

Please sign in to comment.