diff --git a/.circleci/config.yml b/.circleci/config.yml index 55fdad02..8c082e43 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,10 +30,6 @@ refs: run: name: Build Storybook command: yarn storybook:build - - &Lint - run: - name: Lint - command: yarn lint - &Test run: name: Test @@ -66,7 +62,6 @@ jobs: - *Build - *Build_Storybook - *Test - - *Lint - store_artifacts: path: ~/repo/storybook-static - *Commit_Status_Storybook @@ -82,7 +77,6 @@ jobs: - *Build - *Build_Storybook - *Test - - *Lint - store_artifacts: path: ~/repo/storybook-static - *Commit_Status_Storybook @@ -106,7 +100,6 @@ jobs: - *Build - *Build_Storybook - *Test - - *Lint - store_artifacts: path: ~/repo/storybook-static - *Commit_Status_Storybook diff --git a/CHANGELOG.md b/CHANGELOG.md index 628c2e76..7eecc9d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [17.3.0](https://github.com/streamich/react-use/compare/v17.2.4...v17.3.0) (2021-08-31) + + +### Bug Fixes + +* do not re-render unncessarily in useAsyncFn hook ([fa3ba25](https://github.com/streamich/react-use/commit/fa3ba2520ede6866b599f6df55fdfa6395058cd2)) + + +### Features + +* useAudio add playing state ([3203610](https://github.com/streamich/react-use/commit/3203610efdcb8e1fe3c6a17ea19e41bacbeb851b)) + ## [17.2.4](https://github.com/streamich/react-use/compare/v17.2.3...v17.2.4) (2021-04-23) diff --git a/package.json b/package.json index 755f82ff..95b68071 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-use", - "version": "17.2.4", + "version": "17.3.0", "description": "Collection of React Hooks", "main": "lib/index.js", "module": "esm/index.js",