Skip to content

Commit

Permalink
chore(all): prepare release 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Thanood committed Jul 13, 2016
1 parent fa32b00 commit a50091b
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 34 deletions.
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="0.10.1"></a>
## [0.10.1](https://github.com/aurelia-ui-toolkits/aurelia-materialize-bridge/compare/0.10.0...v0.10.1) (2016-07-13)


### Bug Fixes

* **md-datepicker:** Erase via backspace would not update value or clear it ([8e748ce](https://github.com/aurelia-ui-toolkits/aurelia-materialize-bridge/commit/8e748ce))



<a name="0.10.0"></a>
# [0.10.0](https://github.com/aurelia-ui-toolkits/aurelia-materialize-bridge/compare/0.9.0...v0.10.0) (2016-07-06)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-materialize-bridge",
"version": "0.10.0",
"version": "0.10.1",
"registry": "github",
"description": "Aurelia interface to http://materializecss.com/",
"keywords": [
Expand Down
66 changes: 33 additions & 33 deletions sample/src/about/about.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
export class About {
actors = [
{
'name': 'Bryan Cranston',
'episodes': 62,
'description': 'Bryan Cranston played the role of Walter in Breaking Bad. He is also known for playing Hal in Malcom in the Middle.',
'image': 'bryan-cranston.jpg'
}, {
'name': 'Aaron Paul',
'episodes': 62,
'description': 'Aaron Paul played the role of Jesse in Breaking Bad. He also featured in the "Need For Speed" Movie.',
'image': 'aaron-paul.jpg'
}, {
'name': 'Bob Odenkirk',
'episodes': 62,
'description': 'Bob Odenkrik played the role of Saul in Breaking Bad. Due to public fondness for the character, Bob stars in his own show now, called "Better Call Saul".',
'image': 'bob-odenkirk.jpg'
}
];

attached() {
// let bridge = System.get(System.normalizeSync('aurelia-materialize-bridge'));
// this.version = bridge.version;
this.version = '0.10.0';
}

onSelectionChanged(e) {
let selected = this.list.getSelected();
let names = selected.map(i => i.name);
this.logger.log('selection changed: ' + names.join(', '));
// this.logger.log(`selection changed ${e.detail.item.name}`);
}
}
export class About {
actors = [
{
'name': 'Bryan Cranston',
'episodes': 62,
'description': 'Bryan Cranston played the role of Walter in Breaking Bad. He is also known for playing Hal in Malcom in the Middle.',
'image': 'bryan-cranston.jpg'
}, {
'name': 'Aaron Paul',
'episodes': 62,
'description': 'Aaron Paul played the role of Jesse in Breaking Bad. He also featured in the "Need For Speed" Movie.',
'image': 'aaron-paul.jpg'
}, {
'name': 'Bob Odenkirk',
'episodes': 62,
'description': 'Bob Odenkrik played the role of Saul in Breaking Bad. Due to public fondness for the character, Bob stars in his own show now, called "Better Call Saul".',
'image': 'bob-odenkirk.jpg'
}
];

attached() {
// let bridge = System.get(System.normalizeSync('aurelia-materialize-bridge'));
// this.version = bridge.version;
this.version = '0.10.1';
}

onSelectionChanged(e) {
let selected = this.list.getSelected();
let names = selected.map(i => i.name);
this.logger.log('selection changed: ' + names.join(', '));
// this.logger.log(`selection changed ${e.detail.item.name}`);
}
}

0 comments on commit a50091b

Please sign in to comment.