Skip to content

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 Mar 25, 2015
1 parent aec6395 commit 06353a9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-resources",
"version": "0.9.0",
"version": "0.9.1",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/sanitize-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ define(["exports", "aurelia-templating"], function (exports, _aureliaTemplating)
_prototypeProperties(SanitizeHtmlValueConverter, {
metadata: {
value: function metadata() {
return Behavior.valueConverter("sanitize-html");
return Behavior.valueConverter("sanitizeHtml");
},
writable: true,
configurable: true
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/sanitize-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var SanitizeHtmlValueConverter = exports.SanitizeHtmlValueConverter = (function
_prototypeProperties(SanitizeHtmlValueConverter, {
metadata: {
value: function metadata() {
return Behavior.valueConverter("sanitize-html");
return Behavior.valueConverter("sanitizeHtml");
},
writable: true,
configurable: true
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/sanitize-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var SCRIPT_REGEX = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi;

export class SanitizeHtmlValueConverter {
static metadata(){
return Behavior.valueConverter('sanitize-html');
return Behavior.valueConverter('sanitizeHtml');
}

static defaultSanitizer(untrustedMarkup){
Expand Down
2 changes: 1 addition & 1 deletion dist/system/sanitize-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ System.register(["aurelia-templating"], function (_export) {
_prototypeProperties(SanitizeHtmlValueConverter, {
metadata: {
value: function metadata() {
return Behavior.valueConverter("sanitize-html");
return Behavior.valueConverter("sanitizeHtml");
},
writable: true,
configurable: true
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.9.1 (2015-03-25)


#### Bug Fixes

* **sanitize-html:** incorrect value converter name ([aec6395b](http://github.com/aurelia/templating-resources/commit/aec6395b9e7dbb01dcb2e682b4b4cb641e2ede21))


## 0.9.0 (2015-03-25)

#### Features
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-templating-resources",
"version": "0.9.0",
"version": "0.9.1",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 06353a9

Please sign in to comment.