Skip to content

Commit fefcb11

Browse files
committed
prepare 1.1.0 release
1 parent 4571dd6 commit fefcb11

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.1.0 (2018-10-10)
2+
------------------
3+
* Fix and standardize import
4+
15
1.0.0 (2018-08-27)
26
------------------
37
* Initial release

build/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/* eslint-env node */
2+
import RangeStepInput from './RangeStepInput';
3+
module.exports = RangeStepInput;

lib/RangeStepInput.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default class RangeStepInput extends React.Component {
1515
this.state = {
1616
isMouseDown: false,
1717
isDragging: false
18-
}
18+
};
1919
this.onInput = this.onInput.bind(this);
2020
this.onMouseDown = this.onMouseDown.bind(this);
2121
this.onMouseUp = this.onMouseUp.bind(this);

lib/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/* eslint-env node */
2+
3+
import RangeStepInput from './RangeStepInput';
4+
5+
module.exports = RangeStepInput;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-range-step-input",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "An <input type=range> that steps up and down on click.",
55
"main": "build/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)