From 04bde5ccbc577c55ba156ac8008f5e8f05422a12 Mon Sep 17 00:00:00 2001 From: Steven Pautz Date: Sun, 26 Jul 2020 22:19:17 -0400 Subject: [PATCH] Release v0.0.1 --- CHANGELOG.md | 12 ++++++++++++ README.md | 11 ++++++----- package.json | 6 ++---- 3 files changed, 20 insertions(+), 9 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1caa0db --- /dev/null +++ b/CHANGELOG.md @@ -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)) diff --git a/README.md b/README.md index 5ac4f99..5d88ffb 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index 25f7339..26eaeba 100644 --- a/package.json +++ b/package.json @@ -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 ", "files": [ "dist/", "src/", + "CHANGELOG.md", "LICENSE", "README.md" ],