Skip to content

Commit 50f9f35

Browse files
committed
bump version to 1.0.1
- update version, CHANGELOG - minor fix in README
1 parent 11d6c75 commit 50f9f35

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
=== master
22

3+
=== 1.0.1
4+
35
Fix example code in README, add CHANGELOG
46

57
=== 1.0.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default class MyDialogForm extends DialogForm {
7777
// You don't need to overload it if 2 buttons is what your DialogForm needs to have.
7878
getActions() {
7979
return [
80-
<FlatButton label={closeLabel} onTouchTap={onRequestClose} />,
80+
<FlatButton label={closeLabel} onTouchTap={this.props.onRequestClose} />,
8181
<FlatButton label={saveLabel} primary onTouchTap={() => this.save()} />
8282
];
8383
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-form-material-ui",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "material-ui input bindings for react-form-base",
55
"main": "./lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)