diff --git a/HISTORY.md b/HISTORY.md index deace96267..6db72ec35c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,9 +1,13 @@ # React-Select -## Unreleased - -* more props are passed to the Option component: `focusOption`, `inputValue`, `selectValue`, `removeValue` -* the `inputValue` is passed as the third argument to the `optionRenderer` +## v1.1.0 / 2017-11-28 + +* added; more props are passed to the Option component: `focusOption`, `inputValue`, `selectValue`, `removeValue` +* added; the `inputValue` is passed as the third argument to the `optionRenderer` +* fixed; issues opening the menu correctly for multiselect when `autosize={false}` +* fixed; removed `event.stopPropagation()` from Select's `clearValue` and `onClick` handlers, thanks [Thomas Burke](https://github.com/etburke) +* fixed; `handleMouseDownOnArrow` when `openOnClick={false}`, thanks [elias ghali](https://github.com/elghali) +* fixed; conditional scrolling into view of focused option, thanks [Michael Lewis](https://github.com/mtlewis) ## v1.0.1 / 2017-11-24 diff --git a/README.md b/README.md index 78c3e2ce49..f6e3148b5f 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ [![NPM](https://img.shields.io/npm/v/react-select.svg)](https://www.npmjs.com/package/react-select) +[![CDNJS](https://img.shields.io/cdnjs/v/react-select.svg)](https://cdnjs.com/libraries/react-select) [![Build Status](https://travis-ci.org/JedWatson/react-select.svg?branch=master)](https://travis-ci.org/JedWatson/react-select) [![Coverage Status](https://coveralls.io/repos/JedWatson/react-select/badge.svg?branch=master&service=github)](https://coveralls.io/github/JedWatson/react-select?branch=master) [![Supported by Thinkmill](https://thinkmill.github.io/badge/heart.svg)](http://thinkmill.com.au/?utm_source=github&utm_medium=badge&utm_campaign=react-select) -[![CDNJS](https://img.shields.io/cdnjs/v/react-select.svg)](https://cdnjs.com/libraries/react-select) React-Select ============ diff --git a/bower.json b/bower.json index 93347a8a6c..44ffbc3539 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "react-select", "main": ["dist/react-select.min.js", "dist/react-select.min.css"], - "version": "1.0.0", + "version": "1.1.0", "homepage": "https://github.com/JedWatson/react-select", "authors": ["Jed Watson"], "description": "A Select control built with and for ReactJS", diff --git a/package.json b/package.json index 211c5e09c2..6793b2be86 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-select", - "version": "1.0.1", + "version": "1.1.0", "description": "A Select control built with and for ReactJS", "main": "lib/index.js", "jsnext:main": "dist/react-select.es.js",