Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
chore(all): prepare release 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 24, 2015
1 parent d05fb6c commit 2928c8d
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/welcome.html
Expand Up @@ -13,7 +13,7 @@ <h2>${heading}</h2>
</div>
<div class="form-group">
<label>Full Name</label>
<p class="help-block">${fullName}</p>
<p class="help-block">${fullName | upper}</p>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
Expand Down
20 changes: 19 additions & 1 deletion dist/welcome.js
@@ -1,7 +1,7 @@
System.register([], function (_export) {
"use strict";

var _prototypeProperties, Welcome;
var _prototypeProperties, Welcome, UpperValueConverter;
return {
setters: [],
execute: function () {
Expand Down Expand Up @@ -38,6 +38,24 @@ System.register([], function (_export) {
return Welcome;
})();
_export("Welcome", Welcome);

UpperValueConverter = (function () {
function UpperValueConverter() {}

_prototypeProperties(UpperValueConverter, null, {
toView: {
value: function toView(value) {
return value && value.toUpperCase();
},
writable: true,
enumerable: true,
configurable: true
}
});

return UpperValueConverter;
})();
_export("UpperValueConverter", UpperValueConverter);
}
};
});
17 changes: 17 additions & 0 deletions doc/CHANGELOG.md
@@ -1,3 +1,20 @@
### 0.9.1 (2015-01-24)


#### Bug Fixes

* **package:**
* update dependencies ([d05fb6c9](http://github.com/aurelia/skeleton-navigation/commit/d05fb6c9a4148e85165e8b8594b3de9e344e85d6))
* update dependencies ([da130f4f](http://github.com/aurelia/skeleton-navigation/commit/da130f4f2919c8330f455e1b9f175d693aacf43c))
* update dependencies ([ab85bc86](http://github.com/aurelia/skeleton-navigation/commit/ab85bc865cb1607f13cb7d5b3a55f37903e61785))


#### Features

* **package:** update dependencies ([86b1dd90](http://github.com/aurelia/skeleton-navigation/commit/86b1dd908206abfdca2a8f89cc246f54e761bdbd))
* **welcome:** add sample local value converter ([9a2c2aa6](http://github.com/aurelia/skeleton-navigation/commit/9a2c2aa6f7fa9f5a5666aa0c19163bf49cbcc5fc))


## 0.9.0 (2015-01-22)


Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "aurelia-skeleton-navigation",
"version": "0.9.0",
"version": "0.9.1",
"description": "A starter kit for building a standard navigation-style app with Aurelia.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 2928c8d

Please sign in to comment.