Skip to content

Commit

Permalink
Release v0.8.1 and update demo app (#62)
Browse files Browse the repository at this point in the history
* Update todo-list demo and validate against older dependencies

* Validate against newer dependencies
  • Loading branch information
spautz committed Mar 31, 2022
1 parent 072dc20 commit f7d5498
Show file tree
Hide file tree
Showing 4 changed files with 3,906 additions and 6,708 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.8.1](https://github.com/spautz/redux-to-recoil/compare/v0.8.0...v0.8.1) (2022-03-31)

- Confirm support for Recoil 0.6, and reconfirm support for React 18

## [0.8.0](https://github.com/spautz/redux-to-recoil/compare/v0.7.1...v0.8.0) (2021-11-04)

- Confirm support for Recoil 0.5
Expand Down
20 changes: 10 additions & 10 deletions demos/todo-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"version": "0.7.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"react": "beta",
"react-dom": "beta",
"react-redux": "next",
"react-scripts": "4.0.3",
"recoil": "^0.5.2",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^14.0.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-redux": "8.0.0-beta.3",
"react-scripts": "5.0.0",
"recoil": "^0.6.1",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-to-recoil": "~0.8.0",
"reselect": "^4.1.3"
"redux-to-recoil": "~0.8.1",
"reselect": "^4.1.5"
},
"scripts": {
"start": "react-scripts start",
Expand Down
2 changes: 1 addition & 1 deletion demos/todo-list/src/index.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { createRoot } from 'react-dom';
import { createRoot } from 'react-dom/client';
import { createStore } from 'redux';
import { Provider } from 'react-redux';
import { composeWithDevTools } from 'redux-devtools-extension';
Expand Down
Loading

0 comments on commit f7d5498

Please sign in to comment.