From 6e76a1c3487d67dfabbb46446aa6828e4b1708fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 May 2020 23:07:45 +0200 Subject: [PATCH] Version Packages (#267) Co-authored-by: github-actions[bot] --- .changeset/rich-apes-argue.md | 5 ----- .changeset/spotty-hornets-wait.md | 5 ----- .changeset/wise-roses-laugh.md | 5 ----- CHANGELOG.md | 11 +++++++++++ package.json | 6 ++---- 5 files changed, 13 insertions(+), 19 deletions(-) delete mode 100644 .changeset/rich-apes-argue.md delete mode 100644 .changeset/spotty-hornets-wait.md delete mode 100644 .changeset/wise-roses-laugh.md diff --git a/.changeset/rich-apes-argue.md b/.changeset/rich-apes-argue.md deleted file mode 100644 index 02ef203a..00000000 --- a/.changeset/rich-apes-argue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-textarea-autosize': patch ---- - -Fixed a regression with calculating too high height for textareas with `box-sizing: border-box;`. diff --git a/.changeset/spotty-hornets-wait.md b/.changeset/spotty-hornets-wait.md deleted file mode 100644 index 6da31239..00000000 --- a/.changeset/spotty-hornets-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-textarea-autosize': patch ---- - -Exported `TextareaAutosizeProps` type for convenience. diff --git a/.changeset/wise-roses-laugh.md b/.changeset/wise-roses-laugh.md deleted file mode 100644 index 4466ae94..00000000 --- a/.changeset/wise-roses-laugh.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-textarea-autosize': patch ---- - -Fixed an issue with internal cache not being populated correctly when using `cacheMeasurements` prop. diff --git a/CHANGELOG.md b/CHANGELOG.md index 33639d57..68c711b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # react-textarea-autosize +## 8.0.1 + +### Patch Changes + +- [`2307033`](https://github.com/Andarist/react-textarea-autosize/commit/230703341e366ad861e3a24e20f1d9fd6f9ced47) [#266](https://github.com/Andarist/react-textarea-autosize/pull/266) Thanks [@vlazh](https://github.com/vlazh)! - Fixed a regression with calculating too high height for textareas with `box-sizing: border-box;`. + +* [`1d1bba2`](https://github.com/Andarist/react-textarea-autosize/commit/1d1bba23140a7948b34a1cb9678802c71744b0f4) [#265](https://github.com/Andarist/react-textarea-autosize/pull/265) Thanks [@SimenB](https://github.com/SimenB)! - Exported `TextareaAutosizeProps` type for convenience. + +- [`da960f4`](https://github.com/Andarist/react-textarea-autosize/commit/da960f46084f3b584506f3513b77958d5265fcad) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with internal cache not being populated correctly when using `cacheMeasurements` prop. + ## 8.0.0 + ### Major Changes - The package has been rewritten in TypeScript so type definitions are now included in the package itself. There is no need to install separate types from the [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped). diff --git a/package.json b/package.json index 71b61d9d..3f8f493b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-textarea-autosize", "description": "textarea component for React which grows with content", - "version": "8.0.0", + "version": "8.0.1", "keywords": [ "autosize", "grow", @@ -21,9 +21,7 @@ "./dist/react-textarea-autosize.esm.js": "./dist/react-textarea-autosize.browser.esm.js" }, "sideEffects": false, - "files": [ - "dist" - ], + "files": ["dist"], "author": "Andrey Popp <8mayday@gmail.com> (httsps://andreypopp.com/)", "contributors": [ "Mateusz BurzyƄski (https://github.com/Andarist)"