Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fostyfost committed Oct 26, 2021
1 parent 97b1e68 commit 53340ba
Show file tree
Hide file tree
Showing 14 changed files with 60 additions and 13 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.6](https://github.com/fostyfost/redux-eggs/compare/v1.0.5...v1.0.6) (2021-10-26)

### Bug Fixes

- **deps:** use `core`-package as peer-dep ([97b1e68](https://github.com/fostyfost/redux-eggs/commit/97b1e688a90493cec34989b8d906ab6628a6a232))
- **examples:** fix build ([22ff44d](https://github.com/fostyfost/redux-eggs/commit/22ff44de6d3184f5ed8cb8f93a9759b2f986e5da))
- **examples:** fix examples for `getStaticPaths` ([9ed7157](https://github.com/fostyfost/redux-eggs/commit/9ed715752a2c105564d39784cffb8f9803a71e17))
- **examples:** refactor examples ([c171f46](https://github.com/fostyfost/redux-eggs/commit/c171f46df1a625c5d120584ccc23453b092755e1))

### Features

- **examples:** add example for `Next.js` with `RTK`, refactor another examples ([7e84d9b](https://github.com/fostyfost/redux-eggs/commit/7e84d9bd3536690d79bf5253e176b8e9e5222236))

## [1.0.5](https://github.com/fostyfost/redux-eggs/compare/v1.0.4...v1.0.5) (2021-10-01)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.5",
"version": "1.0.6",
"npmClient": "yarn",
"useWorkspaces": false,
"packages": ["packages/*"],
Expand Down
4 changes: 4 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.6](https://github.com/fostyfost/redux-eggs/compare/v1.0.5...v1.0.6) (2021-10-26)

**Note:** Version bump only for package @redux-eggs/core

## [1.0.5](https://github.com/fostyfost/redux-eggs/compare/v1.0.4...v1.0.5) (2021-10-01)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redux-eggs/core",
"version": "1.0.5",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/next/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.6](https://github.com/fostyfost/redux-eggs/compare/v1.0.5...v1.0.6) (2021-10-26)

### Bug Fixes

- **deps:** use `core`-package as peer-dep ([97b1e68](https://github.com/fostyfost/redux-eggs/commit/97b1e688a90493cec34989b8d906ab6628a6a232))

## [1.0.5](https://github.com/fostyfost/redux-eggs/compare/v1.0.4...v1.0.5) (2021-10-01)

**Note:** Version bump only for package @redux-eggs/next
Expand Down
6 changes: 3 additions & 3 deletions packages/next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redux-eggs/next",
"version": "1.0.5",
"version": "1.0.6",
"main": "dist/index.server.js",
"module": "dist/index.server.js",
"browser": "dist/index.client.js",
Expand All @@ -24,8 +24,8 @@
"devDependencies": {
"@jest/types": "27.2.5",
"@redux-eggs-internal/rollup-plugin-filesize": "1.0.0",
"@redux-eggs/core": "1.0.5",
"@redux-eggs/redux": "1.0.5",
"@redux-eggs/core": "1.0.6",
"@redux-eggs/redux": "1.0.6",
"@rollup/plugin-eslint": "8.0.1",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.6](https://github.com/fostyfost/redux-eggs/compare/v1.0.5...v1.0.6) (2021-10-26)

### Bug Fixes

- **deps:** use `core`-package as peer-dep ([97b1e68](https://github.com/fostyfost/redux-eggs/commit/97b1e688a90493cec34989b8d906ab6628a6a232))

## [1.0.5](https://github.com/fostyfost/redux-eggs/compare/v1.0.4...v1.0.5) (2021-10-01)

**Note:** Version bump only for package @redux-eggs/react
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redux-eggs/react",
"version": "1.0.5",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
Expand All @@ -23,7 +23,7 @@
"devDependencies": {
"@jest/types": "27.2.5",
"@redux-eggs-internal/rollup-plugin-filesize": "1.0.0",
"@redux-eggs/core": "1.0.5",
"@redux-eggs/core": "1.0.6",
"@rollup/plugin-eslint": "8.0.1",
"@testing-library/dom": "8.10.1",
"@testing-library/jest-dom": "5.14.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/redux-toolkit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.6](https://github.com/fostyfost/redux-eggs/compare/v1.0.5...v1.0.6) (2021-10-26)

### Bug Fixes

- **deps:** use `core`-package as peer-dep ([97b1e68](https://github.com/fostyfost/redux-eggs/commit/97b1e688a90493cec34989b8d906ab6628a6a232))

## [1.0.5](https://github.com/fostyfost/redux-eggs/compare/v1.0.4...v1.0.5) (2021-10-01)

**Note:** Version bump only for package @redux-eggs/redux-toolkit
Expand Down
4 changes: 2 additions & 2 deletions packages/redux-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redux-eggs/redux-toolkit",
"version": "1.0.5",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
Expand All @@ -24,7 +24,7 @@
"devDependencies": {
"@jest/types": "27.2.5",
"@redux-eggs-internal/rollup-plugin-filesize": "1.0.0",
"@redux-eggs/core": "1.0.5",
"@redux-eggs/core": "1.0.6",
"@reduxjs/toolkit": "1.6.2",
"@rollup/plugin-eslint": "8.0.1",
"@types/jest": "27.0.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/redux/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.6](https://github.com/fostyfost/redux-eggs/compare/v1.0.5...v1.0.6) (2021-10-26)

### Bug Fixes

- **deps:** use `core`-package as peer-dep ([97b1e68](https://github.com/fostyfost/redux-eggs/commit/97b1e688a90493cec34989b8d906ab6628a6a232))

## [1.0.5](https://github.com/fostyfost/redux-eggs/compare/v1.0.4...v1.0.5) (2021-10-01)

**Note:** Version bump only for package @redux-eggs/redux
Expand Down
4 changes: 2 additions & 2 deletions packages/redux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redux-eggs/redux",
"version": "1.0.5",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
Expand All @@ -24,7 +24,7 @@
"devDependencies": {
"@jest/types": "27.2.5",
"@redux-eggs-internal/rollup-plugin-filesize": "1.0.0",
"@redux-eggs/core": "1.0.5",
"@redux-eggs/core": "1.0.6",
"@rollup/plugin-eslint": "8.0.1",
"@types/jest": "27.0.2",
"@wessberg/rollup-plugin-ts": "1.3.14",
Expand Down
6 changes: 6 additions & 0 deletions packages/saga-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.6](https://github.com/fostyfost/redux-eggs/compare/v1.0.5...v1.0.6) (2021-10-26)

### Bug Fixes

- **deps:** use `core`-package as peer-dep ([97b1e68](https://github.com/fostyfost/redux-eggs/commit/97b1e688a90493cec34989b8d906ab6628a6a232))

## [1.0.5](https://github.com/fostyfost/redux-eggs/compare/v1.0.4...v1.0.5) (2021-10-01)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/saga-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redux-eggs/saga-extension",
"version": "1.0.5",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
Expand All @@ -24,7 +24,7 @@
"devDependencies": {
"@jest/types": "27.2.5",
"@redux-eggs-internal/rollup-plugin-filesize": "1.0.0",
"@redux-eggs/core": "1.0.5",
"@redux-eggs/core": "1.0.6",
"@rollup/plugin-eslint": "8.0.1",
"@types/jest": "27.0.2",
"@wessberg/rollup-plugin-ts": "1.3.14",
Expand Down

0 comments on commit 53340ba

Please sign in to comment.