diff --git a/CHANGELOG.md b/CHANGELOG.md index f99958c..e30cf85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v0.2.0](https://github.com/alexjamesmalcolm/use-resource/compare/v0.1.25...v0.2.0) + +- Fixing reduce type and multiple calls for a single resourceId [`#4`](https://github.com/alexjamesmalcolm/use-resource/pull/4) +- Created test to prevent overfetching [`1d0e822`](https://github.com/alexjamesmalcolm/use-resource/commit/1d0e822da2c05b62e08d811964c3d4f494317e0f) +- Added Counter feature from template to use as a future example [`30c7bd9`](https://github.com/alexjamesmalcolm/use-resource/commit/30c7bd9294f90c5621f945fa53da70bd3b2c2ed2) +- Prevented two useResource with the same id from both trying to get resource [`9d6e978`](https://github.com/alexjamesmalcolm/use-resource/commit/9d6e97834c2342a098eda421664becf082620d89) + #### [v0.1.25](https://github.com/alexjamesmalcolm/use-resource/compare/v0.1.24...v0.1.25) +> 10 October 2020 + - Fixed build [`299ec35`](https://github.com/alexjamesmalcolm/use-resource/commit/299ec35c384cf8b2c560a858fff506417504cc46) - Improved build tsconfig.json [`2edba4c`](https://github.com/alexjamesmalcolm/use-resource/commit/2edba4ccf454a01e9a17e52da2222db327446ae8) -- Added build folder to .npmignore [`995143d`](https://github.com/alexjamesmalcolm/use-resource/commit/995143ddbcf3bc6bcda7f658ace5e4f9d360e48d) +- Incremented to 0.1.25 [`fa8c95d`](https://github.com/alexjamesmalcolm/use-resource/commit/fa8c95d83bd212cc42821e3cfb9d206013fc0a11) #### [v0.1.24](https://github.com/alexjamesmalcolm/use-resource/compare/v0.1.23...v0.1.24) diff --git a/package.json b/package.json index 4f37dea..d541361 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@alexjamesmalcolm/use-resource", - "version": "0.1.25", + "version": "0.2.0", "description": "A React hook that assists in retrieving remote data and caching via redux by abstracting the Auto Effect pattern.", "private": false, "license": "MIT",