From 394b30e79e56f8869ac1972d686da1990fb1e959 Mon Sep 17 00:00:00 2001 From: Douglas Armstrong Date: Tue, 18 May 2021 13:21:42 -0700 Subject: [PATCH] Bump for 0.3.1 Summary: Bump `package.json` and changelog for 0.3.1 Reviewed By: davidmccabe Differential Revision: D28514546 fbshipit-source-id: 95c8ab29447ddb93067e7aba7e45933fa426c391 --- CHANGELOG.md | 6 +++++- package.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a585113e..2eb35fdf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,13 @@ - Memory management - Selector cache configuration +## 0.3.1 (2021-5-18) + +- Fix TypeScript exports + ## 0.3.0 (2021-5-14) -In the future to support garbage collection, there is a slight breaking change that `Snapshot`'s will only be valid for the duration of the callback or render. A new `retain()` API can be used to persist them longer. This is not enforced yet, but Recoil will now provide a warning in dev-mode if a `Snapshot` is used past its lifetime. (#1006) +For supporting garbage collection in the future there is a slight breaking change that `Snapshot`'s will only be valid for the duration of the callback or render. A new `retain()` API can be used to persist them longer. This is not enforced yet, but Recoil will now provide a warning in dev-mode if a `Snapshot` is used past its lifetime. (#1006) ### New Features / Improvements - Add `override` prop to `` (#973) diff --git a/package.json b/package.json index 1023a8f86..3058cdfed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "recoil", - "version": "0.3.0", + "version": "0.3.1", "description": "Recoil - A state management library for React", "main": "cjs/recoil.js", "module": "es/recoil.js",