Skip to content

Commit ae9e628

Browse files
committed
Release 2.0.1 furqanZafar#68
1 parent 21f7ea3 commit ae9e628

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

CHANGELOG.md

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

3+
## v2.0.1 / 11th April 2016
34
## v2.0.0 / 11th April 2016
45
* switched to major version semver
56
* added [email protected] to peer deps

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ styles & features inspired by [React Select](http://jedwatson.github.io/react-se
1313

1414
[![](http://i.imgsafe.co/rQmogzn.gif)](http://furqanZafar.github.io/react-selectize/)
1515

16-
- [Changelog](CHANGELOG.md) (last updated on 18th March 2016)
16+
- [Changelog](CHANGELOG.md) (last updated on 11th April 2016)
1717
- [API Reference](API.md)
1818

1919
# Motivation
@@ -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/[email protected].0/bower.zip`
54+
`bower install https://npmcdn.com/[email protected].1/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/[email protected].0/dist/index.min.js" type="text/javascript" ></script>
69+
<script src="https://npmcdn.com/[email protected].1/dist/index.min.js" type="text/javascript" ></script>
7070

7171
<!-- THEMES (default, bootstrap3, material) -->
72-
<link rel="stylesheet" href="https://npmcdn.com/[email protected].0/dist/index.min.css"/>
72+
<link rel="stylesheet" href="https://npmcdn.com/[email protected].1/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": "2.0.0",
3+
"version": "2.0.1",
44
"homepage": "https://github.com/furqanZafar/react-selectize",
55
"authors": [
66
"Furqan Zafar (Mac Pro) <[email protected]>"

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-selectize",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "A Stateless & Flexible Select component for React inspired by Selectize",
55
"main": "src/index.js",
66
"scripts": {
@@ -15,10 +15,10 @@
1515
"tether": "^1.1.1"
1616
},
1717
"peerDependencies": {
18-
"react": "^0.14.0",
19-
"react-addons-css-transition-group": "^0.14.0",
20-
"react-addons-shallow-compare": "^0.14.0",
21-
"react-dom": "^0.14.0"
18+
"react": "^0.14.0 || ^15.0.0",
19+
"react-addons-css-transition-group": "^0.14.0 || ^15.0.0",
20+
"react-addons-shallow-compare": "^0.14.0 || ^15.0.0",
21+
"react-dom": "^0.14.0 || ^15.0.0"
2222
},
2323
"browserify-shim": {
2424
"prelude-extension": "global:preludeExtension",
@@ -53,11 +53,11 @@
5353
"mocha": "^2.3.3",
5454
"mocha-lcov-reporter": "^1.0.0",
5555
"nib": "^1.1.0",
56-
"react": "^0.14.0",
57-
"react-addons-css-transition-group": "^0.14.0",
58-
"react-addons-shallow-compare": "^0.14.6",
59-
"react-addons-test-utils": "^0.14.0",
60-
"react-dom": "^0.14.0",
56+
"react": "^0.14.0 || ^15.0.0",
57+
"react-addons-css-transition-group": "^0.14.0 || ^15.0.0",
58+
"react-addons-shallow-compare": "^0.14.0 || ^15.0.0",
59+
"react-addons-test-utils": "^0.14.0 || ^15.0.0",
60+
"react-dom": "^0.14.0 || ^15.0.0",
6161
"react-router": "^1.0.0-rc1",
6262
"react-tools": "^0.13.3",
6363
"run-sequence": "^1.1.5",

0 commit comments

Comments
 (0)