diff --git a/HISTORY.md b/HISTORY.md index 26a0eeb2de..be5768fa61 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,14 +1,20 @@ # React-Select -## Unreleased +## v1.0.0-rc.8 / 2017-09-13 -* fixed; removed use of `Object.assign`, fixes IE +* fixed; clearable padding style, thanks [Minori Miyauchi](https://github.com/mmiyauchi) +* fixed; removed use of `Object.assign`, fixes IE compatibility * added; new `closeOnSelect` prop (defaults to `true`) that controls whether the menu is closed when an option is selected, thanks to [Michael Elgar](https://github.com/melgar) for the original idea * changed; by default, the menu for multi-selects now closes when an option is selected * changed; `Async` component no longer always clears options when one is selected (although the menu is now closed by default). Use `closeOnSelect={false} onSelectResetsInput={false}` to leave the menu open. * fixed; `Async` component always called `onChange` even when it wasn't provided * fixed; input lag for the `Async` component when results are returned from cache * fixed; required was not being updated without an onChange handler +* fixed; peer dependencies for `prop-types`, thanks [Michaƫl De Boey](https://github.com/MichaelDeBoey) +* fixed; internal optimisations, thanks [Kieran Boyle](https://github.com/dysfunc) +* added; `Value` component is now exported, thanks [Prof Gra](https://github.com/Grahack) +* fixed; callback fired after `Async` component unmounts, thanks [Andrew Russell](https://github.com/DeadHeadRussell) +* fixed; wrapping on Firefox in SCSS files, thanks [Michael Williamson](https://github.com/mwilliamson) ## v1.0.0-rc.8 / 2017-09-12 diff --git a/bower.json b/bower.json index 23725ca4d5..4354825ccd 100644 --- a/bower.json +++ b/bower.json @@ -1,14 +1,14 @@ { "name": "react-select", "main": ["dist/react-select.min.js", "dist/react-select.min.css"], - "version": "1.0.0-rc.8", + "version": "1.0.0-rc.9", "homepage": "https://github.com/JedWatson/react-select", "authors": ["Jed Watson"], "description": "A Select control built with and for ReactJS", "moduleType": ["amd", "globals", "node"], "dependencies": { "classnames": "^2.2.0", - "react-input-autosize": "^2.0.0" + "react-input-autosize": "^2.0.1" }, "keywords": [ "react", diff --git a/package.json b/package.json index 236f9e29ae..bc3c252cc2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-select", - "version": "1.0.0-rc.8", + "version": "1.0.0-rc.9", "description": "A Select control built with and for ReactJS", "main": "lib/index.js", "jsnext:main": "dist/react-select.es.js", @@ -14,7 +14,7 @@ "dependencies": { "classnames": "^2.2.4", "prop-types": "^15.5.8", - "react-input-autosize": "^2.0.0" + "react-input-autosize": "^2.0.1" }, "devDependencies": { "babel-cli": "^6.26.0",