Skip to content

Commit

Permalink
v1.0.0-rc.9
Browse files Browse the repository at this point in the history
  • Loading branch information
JedWatson committed Sep 12, 2017
1 parent bd8fdd7 commit 33f118f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 8 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 33f118f

Please sign in to comment.