From 37428faef083bea9747d8459fca771d765ade123 Mon Sep 17 00:00:00 2001 From: Michael Peyper Date: Fri, 6 Sep 2019 14:51:30 +1000 Subject: [PATCH] v5.0.0 --- examples/counter/package.json | 4 ++-- examples/real-world/package.json | 8 ++++---- examples/redux-loop/redux-loop-example/package.json | 6 +++--- .../redux-observable/cancellable-counter/package.json | 8 ++++---- examples/redux-saga/cancellable-counter/package.json | 8 ++++---- examples/redux-saga/counter/package.json | 6 +++--- examples/slorber-scalable-frontend/package.json | 8 ++++---- examples/todos/package.json | 6 +++--- lerna.json | 2 +- packages/react-redux-subspace/package.json | 4 ++-- packages/redux-subspace-loop/package.json | 4 ++-- packages/redux-subspace-observable/package.json | 4 ++-- packages/redux-subspace-saga/package.json | 4 ++-- packages/redux-subspace-wormhole/package.json | 4 ++-- packages/redux-subspace/package.json | 2 +- 15 files changed, 39 insertions(+), 39 deletions(-) diff --git a/examples/counter/package.json b/examples/counter/package.json index ade0c237..f8bb007f 100644 --- a/examples/counter/package.json +++ b/examples/counter/package.json @@ -1,6 +1,6 @@ { "name": "counter", - "version": "4.0.1", + "version": "5.0.0", "private": true, "devDependencies": { "react-scripts": "^3.0.1" @@ -10,7 +10,7 @@ "react": "^16.8.6", "react-dom": "^16.8.6", "redux": "^4.0.4", - "redux-subspace": "^4.0.1" + "redux-subspace": "^5.0.0" }, "scripts": { "start": "SKIP_PREFLIGHT_CHECK=true react-scripts start" diff --git a/examples/real-world/package.json b/examples/real-world/package.json index b7a5c7e7..f4d01dc9 100644 --- a/examples/real-world/package.json +++ b/examples/real-world/package.json @@ -1,6 +1,6 @@ { "name": "real-world", - "version": "4.0.1", + "version": "5.0.0", "private": true, "devDependencies": { "react-scripts": "^3.0.1", @@ -19,12 +19,12 @@ "react": "^16.8.6", "react-dom": "^16.8.6", "react-redux": "^7.1.1", - "react-redux-subspace": "^4.0.1", + "react-redux-subspace": "^5.0.0", "react-router": "^5.0.1", "react-router-dom": "^5.0.1", "redux": "^4.0.4", - "redux-subspace": "^4.0.1", - "redux-subspace-wormhole": "^4.0.1", + "redux-subspace": "^5.0.0", + "redux-subspace-wormhole": "^5.0.0", "redux-thunk": "^2.3.0" }, "scripts": { diff --git a/examples/redux-loop/redux-loop-example/package.json b/examples/redux-loop/redux-loop-example/package.json index faf19f99..5921888a 100644 --- a/examples/redux-loop/redux-loop-example/package.json +++ b/examples/redux-loop/redux-loop-example/package.json @@ -1,6 +1,6 @@ { "name": "redux-loop-example", - "version": "4.0.1", + "version": "5.0.0", "private": true, "devDependencies": { "npm-link-shared": "^0.5.6", @@ -12,11 +12,11 @@ "react": "^16.8.6", "react-dom": "^16.8.6", "react-redux": "^7.1.1", - "react-redux-subspace": "^4.0.1", + "react-redux-subspace": "^5.0.0", "redux": "^4.0.4", "redux-act": "^1.7.7", "redux-loop": "^5.0.0", - "redux-subspace-loop": "^4.0.1" + "redux-subspace-loop": "^5.0.0" }, "scripts": { "prestart": "npm-link-shared ./node_modules/redux-subspace-loop/node_modules . redux-loop", diff --git a/examples/redux-observable/cancellable-counter/package.json b/examples/redux-observable/cancellable-counter/package.json index f4a3f33f..2abb101c 100644 --- a/examples/redux-observable/cancellable-counter/package.json +++ b/examples/redux-observable/cancellable-counter/package.json @@ -1,6 +1,6 @@ { "name": "redux-observable-cancellable-counter", - "version": "4.0.1", + "version": "5.0.0", "private": true, "devDependencies": { "react-scripts": "^3.0.1" @@ -10,11 +10,11 @@ "react": "^16.8.6", "react-dom": "^16.8.6", "react-redux": "^7.1.1", - "react-redux-subspace": "^4.0.1", + "react-redux-subspace": "^5.0.0", "redux": "^4.0.4", "redux-observable": "^1.1.0", - "redux-subspace": "^4.0.1", - "redux-subspace-observable": "^4.0.1", + "redux-subspace": "^5.0.0", + "redux-subspace-observable": "^5.0.0", "rxjs": "^6.5.2" }, "scripts": { diff --git a/examples/redux-saga/cancellable-counter/package.json b/examples/redux-saga/cancellable-counter/package.json index 4af8a9dd..1003e4b1 100644 --- a/examples/redux-saga/cancellable-counter/package.json +++ b/examples/redux-saga/cancellable-counter/package.json @@ -1,6 +1,6 @@ { "name": "redux-saga-cancellable-counter", - "version": "4.0.1", + "version": "5.0.0", "private": true, "devDependencies": { "react-scripts": "^3.0.1" @@ -10,11 +10,11 @@ "react": "^16.8.6", "react-dom": "^16.8.6", "react-redux": "^7.1.1", - "react-redux-subspace": "^4.0.1", + "react-redux-subspace": "^5.0.0", "redux": "^4.0.4", "redux-saga": "^1.0.5", - "redux-subspace": "^4.0.1", - "redux-subspace-saga": "^4.0.1" + "redux-subspace": "^5.0.0", + "redux-subspace-saga": "^5.0.0" }, "scripts": { "start": "SKIP_PREFLIGHT_CHECK=true react-scripts start" diff --git a/examples/redux-saga/counter/package.json b/examples/redux-saga/counter/package.json index 437db91c..01e8200c 100644 --- a/examples/redux-saga/counter/package.json +++ b/examples/redux-saga/counter/package.json @@ -1,6 +1,6 @@ { "name": "redux-saga-counter", - "version": "4.0.1", + "version": "5.0.0", "private": true, "devDependencies": { "react-scripts": "^3.0.1" @@ -11,8 +11,8 @@ "react-dom": "^16.8.6", "redux": "^4.0.4", "redux-saga": "^1.0.5", - "redux-subspace": "^4.0.1", - "redux-subspace-saga": "^4.0.1" + "redux-subspace": "^5.0.0", + "redux-subspace-saga": "^5.0.0" }, "scripts": { "start": "SKIP_PREFLIGHT_CHECK=true react-scripts start" diff --git a/examples/slorber-scalable-frontend/package.json b/examples/slorber-scalable-frontend/package.json index 079b3ed7..1187c1a5 100644 --- a/examples/slorber-scalable-frontend/package.json +++ b/examples/slorber-scalable-frontend/package.json @@ -1,6 +1,6 @@ { "name": "slorber-scalable-frontend", - "version": "4.0.1", + "version": "5.0.0", "private": true, "devDependencies": { "react-scripts": "^3.0.1" @@ -9,11 +9,11 @@ "react": "^16.8.6", "react-dom": "^16.8.6", "react-redux": "^7.1.1", - "react-redux-subspace": "^4.0.1", + "react-redux-subspace": "^5.0.0", "redux": "^4.0.4", "redux-devtools-extension": "^2.13.8", - "redux-subspace": "^4.0.1", - "redux-subspace-wormhole": "^4.0.1", + "redux-subspace": "^5.0.0", + "redux-subspace-wormhole": "^5.0.0", "redux-thunk": "^2.3.0" }, "scripts": { diff --git a/examples/todos/package.json b/examples/todos/package.json index 80fa0426..8e379529 100644 --- a/examples/todos/package.json +++ b/examples/todos/package.json @@ -1,6 +1,6 @@ { "name": "todos", - "version": "4.0.1", + "version": "5.0.0", "private": true, "devDependencies": { "react-scripts": "^3.0.1" @@ -10,9 +10,9 @@ "react": "^16.8.6", "react-dom": "^16.8.6", "react-redux": "^7.1.1", - "react-redux-subspace": "^4.0.1", + "react-redux-subspace": "^5.0.0", "redux": "^4.0.4", - "redux-subspace": "^4.0.1" + "redux-subspace": "^5.0.0" }, "scripts": { "start": "SKIP_PREFLIGHT_CHECK=true react-scripts start" diff --git a/lerna.json b/lerna.json index 59bfdd17..3adbf243 100644 --- a/lerna.json +++ b/lerna.json @@ -4,5 +4,5 @@ "examples/**/*", "packages/*" ], - "version": "4.0.1" + "version": "5.0.0" } diff --git a/packages/react-redux-subspace/package.json b/packages/react-redux-subspace/package.json index ab2c5a02..4e273721 100644 --- a/packages/react-redux-subspace/package.json +++ b/packages/react-redux-subspace/package.json @@ -1,6 +1,6 @@ { "name": "react-redux-subspace", - "version": "4.0.1", + "version": "5.0.0", "description": "react-redux Provider extension for redux-subspace", "author": "Michael Peyper", "contributors": [ @@ -36,7 +36,7 @@ "hoist-non-react-statics": "^3.3.0", "prop-types": "^15.7.2", "recompose": "^0.30.0", - "redux-subspace": "^4.0.1" + "redux-subspace": "^5.0.0" }, "peerDependencies": { "react": "^16.8.0", diff --git a/packages/redux-subspace-loop/package.json b/packages/redux-subspace-loop/package.json index 0f47fcc4..9fe10a88 100644 --- a/packages/redux-subspace-loop/package.json +++ b/packages/redux-subspace-loop/package.json @@ -1,6 +1,6 @@ { "name": "redux-subspace-loop", - "version": "4.0.1", + "version": "5.0.0", "description": "redux-subspace wrappers for redux-loop", "author": "Riku Rouvila", "contributors": [ @@ -32,7 +32,7 @@ "url": "https://github.com/ioof-holdings/redux-subspace.git" }, "dependencies": { - "redux-subspace": "^4.0.1" + "redux-subspace": "^5.0.0" }, "peerDependencies": { "redux": "^3.0.0 || ^4.0.0", diff --git a/packages/redux-subspace-observable/package.json b/packages/redux-subspace-observable/package.json index 3f85f8dd..3ac7e26e 100644 --- a/packages/redux-subspace-observable/package.json +++ b/packages/redux-subspace-observable/package.json @@ -1,6 +1,6 @@ { "name": "redux-subspace-observable", - "version": "4.0.1", + "version": "5.0.0", "description": "redux-subspace wrappers for redux-observable", "author": "Michael Peyper", "contributors": [ @@ -31,7 +31,7 @@ "url": "https://github.com/ioof-holdings/redux-subspace.git" }, "dependencies": { - "redux-subspace": "^4.0.1", + "redux-subspace": "^5.0.0", "rxjs": "^6.5.2" }, "peerDependencies": { diff --git a/packages/redux-subspace-saga/package.json b/packages/redux-subspace-saga/package.json index d2a34cfd..8787a612 100644 --- a/packages/redux-subspace-saga/package.json +++ b/packages/redux-subspace-saga/package.json @@ -1,6 +1,6 @@ { "name": "redux-subspace-saga", - "version": "4.0.1", + "version": "5.0.0", "description": "redux-subspace wrappers for redux-saga", "author": "Michael Peyper", "contributors": [ @@ -32,7 +32,7 @@ }, "dependencies": { "@babel/runtime": "^7.5.5", - "redux-subspace": "^4.0.1" + "redux-subspace": "^5.0.0" }, "peerDependencies": { "redux": "^3.0.0 || ^4.0.0", diff --git a/packages/redux-subspace-wormhole/package.json b/packages/redux-subspace-wormhole/package.json index 99accaf6..56c75182 100644 --- a/packages/redux-subspace-wormhole/package.json +++ b/packages/redux-subspace-wormhole/package.json @@ -1,6 +1,6 @@ { "name": "redux-subspace-wormhole", - "version": "4.0.1", + "version": "5.0.0", "description": "Create isolated subspaces of a Redux store", "author": "Michael Peyper", "contributors": [ @@ -32,7 +32,7 @@ }, "dependencies": { "lodash.isplainobject": "^4.0.6", - "redux-subspace": "^4.0.1" + "redux-subspace": "^5.0.0" }, "devDependencies": { "@babel/core": "^7.5.5", diff --git a/packages/redux-subspace/package.json b/packages/redux-subspace/package.json index 953844d0..2b3dcec8 100644 --- a/packages/redux-subspace/package.json +++ b/packages/redux-subspace/package.json @@ -1,6 +1,6 @@ { "name": "redux-subspace", - "version": "4.0.1", + "version": "5.0.0", "description": "Create isolated subspaces of a Redux store", "author": "Michael Peyper", "contributors": [