Skip to content

Commit

Permalink
Release v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spautz committed Jul 27, 2020
1 parent 99ba8e8 commit 04bde5c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

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.

**This library is not yet ready for use. Once it is, v0.1.0 will be the initial release.**

### 0.0.1 (2020-07-27)

### Features

- Add basic todo-list demo ([#1](https://github.com/spautz/redux-to-recoil/issues/1)) ([2221db0](https://github.com/spautz/redux-to-recoil/commit/2221db03314a6b8086b6b0a6f420a99bb41167c1))
- Core functionality for read-only sync ([#5](https://github.com/spautz/redux-to-recoil/issues/5)) ([99ba8e8](https://github.com/spautz/redux-to-recoil/commit/99ba8e81682faba66846d99a5a03e32be0162539))
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,14 @@ uses a Redux-linked atom or selector will rerender when Redux updates.
Due to [Recoil issue #12](https://github.com/facebookexperimental/Recoil/issues/12), you will see a console error in
React 16.13. This does not hurt anything, but it is annoying.

> `Warning: Cannot update a component (`Batcher`) while rendering a different component`
> `Warning: Cannot update a component (Batcher) while rendering a different component`
## Roadmap

- [ ] Core functionality: SyncReduxToRecoil
- [ ] Core functionality: atomFromRedux
- [ ] Core functionality: selectorFromReselect
- [x] Core functionality: SyncReduxToRecoil
- [x] Core functionality: atomFromRedux
- [x] Core functionality: selectorFromReselect
- [ ] Tests
- [ ] Demo
- [x] Core functionality: middleware for writing back to redux
- [x] Demo
- [ ] Initial release
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
{
"name": "redux-to-recoil",
"version": "0.0.1",
"description": "Create Recoil atoms and selectors from your existing actions, reducers, and selectors",
"description": "Access your Redux store through Recoil atoms and selectors",
"keywords": [],
"license": "MIT",
"homepage": "https://github.com/spautz/redux-to-recoil#readme",
"repository": "https://github.com/spautz/redux-to-recoil",
"bugs": "https://github.com/spautz/redux-to-recoil/issues",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Steven Pautz <spautz@gmail.com>",
"files": [
"dist/",
"src/",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
Expand Down

0 comments on commit 04bde5c

Please sign in to comment.