Skip to content

Commit 21f7ea3

Browse files
committed
Release 2.0.0 [email protected] support, switching to major version semver, abandoning git flow furqanZafar#68
1 parent d6e30e8 commit 21f7ea3

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# React Selectize
22

3+
## v2.0.0 / 11th April 2016
4+
* switched to major version semver
5+
* added [email protected] to peer deps
6+
* abandoned git flow branching model
7+
38
## v0.9.0 / 18th March 2016
49
* added `on-paste` and `value-from-paste` props to `SimpleSelect`
510
* added `highlighted-uid` and `on-highlighted-uid-change` props to track the current highlighted option

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ to include the default styles add the following import statement to your stylus
5151
`@import 'node_modules/react-selectize/themes/index.css'`
5252

5353
* **bower:**
54-
`bower install https://npmcdn.com/react-selectize@0.9.0/bower.zip`
54+
`bower install https://npmcdn.com/react-selectize@2.0.0/bower.zip`
5555

5656
* **1998 script tag:**
5757
```html
@@ -66,10 +66,10 @@ to include the default styles add the following import statement to your stylus
6666
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" type="text/javascript" ></script>
6767

6868
<!-- REACT SELECTIZE -->
69-
<script src="https://npmcdn.com/react-selectize@0.9.0/dist/index.min.js" type="text/javascript" ></script>
69+
<script src="https://npmcdn.com/react-selectize@2.0.0/dist/index.min.js" type="text/javascript" ></script>
7070

7171
<!-- THEMES (default, bootstrap3, material) -->
72-
<link rel="stylesheet" href="https://npmcdn.com/react-selectize@0.9.0/dist/index.min.css"/>
72+
<link rel="stylesheet" href="https://npmcdn.com/react-selectize@2.0.0/dist/index.min.css"/>
7373

7474
</head>
7575
</html>

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-selectize",
3-
"version": "0.9.0",
3+
"version": "2.0.0",
44
"homepage": "https://github.com/furqanZafar/react-selectize",
55
"authors": [
66
"Furqan Zafar (Mac Pro) <[email protected]>"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-selectize",
3-
"version": "0.9.0",
3+
"version": "2.0.0",
44
"description": "A Stateless & Flexible Select component for React inspired by Selectize",
55
"main": "src/index.js",
66
"scripts": {

test/simple-select.ls

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ describe "SimpleSelect", ->
145145
name: \test
146146
click-to-open-select-control select
147147
click-option find-highlighted-option select
148-
{value} = scry-rendered-DOM-components-with-tag select, \input
148+
{value} = (scry-rendered-DOM-components-with-tag select, \input)
149149
|> find (.type == \hidden)
150150
assert \apple == value
151151

0 commit comments

Comments
 (0)