Release 0.0.8 - update package.json and CHANGELOG.md (#210)

Summary:
Update package.json and CHANGELOG.md for version 0.0.8.
Pull Request resolved: https://github.com/facebookexperimental/Recoil/pull/210

Reviewed By: mondaychen

Differential Revision: D21806942

Pulled By: davidmccabe

fbshipit-source-id: 23253b6912f51429cd45ea0a9a17fcab42945ac5
This commit is contained in:
Dave McCabe
2020-05-30 18:54:03 -07:00
committed by Facebook GitHub Bot
parent e47e0f53a0
commit 22b42bbc03
2 changed files with 18 additions and 1 deletions

17
CHANGELOG.md Normal file
View File

@@ -0,0 +1,17 @@
# Change Log
## 0.0.8 (2020-05-30)
### Bug Fixes
- Build system and repository syncing fixed.
- Fixed a bug where atoms that stored self-referential structures would cause an infinite loop. (#153)
- Fixed bugs affecting Server-Side Rendering. (#53)
### Features
- TypeScript support is now available via DefinitelyTyped.
- `atomFamily` and `selectorFamily`: these provide a standard way to create atoms and selectors using memoized functions. Compared with doing this yourself, in the future these will help with memory management.
- `noWait`, `waitForNone`, `waitForAny`, `waitForAll`: helpers for concurrency and other advanced logic in async selectors.
- `constSelector` and `errorSelector`: selectors that always evaluate to a constant or always throw an error.
- `readOnlySelector`: wraps a read-write atom or selector in a read-only interface, for when you need type covariance.

View File

@@ -1,6 +1,6 @@
{
"name": "recoil",
"version": "0.0.7",
"version": "0.0.8",
"description": "Recoil - A React state management library for complex UIs",
"main": "dist/index.js",
"files": [