diff --git a/bower.json b/bower.json index 4ca4adf..be1649b 100644 --- a/bower.json +++ b/bower.json @@ -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", diff --git a/dist/amd/sanitize-html.js b/dist/amd/sanitize-html.js index 99c3a71..7862d9b 100644 --- a/dist/amd/sanitize-html.js +++ b/dist/amd/sanitize-html.js @@ -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 diff --git a/dist/commonjs/sanitize-html.js b/dist/commonjs/sanitize-html.js index 761a715..b5ecd25 100644 --- a/dist/commonjs/sanitize-html.js +++ b/dist/commonjs/sanitize-html.js @@ -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 diff --git a/dist/es6/sanitize-html.js b/dist/es6/sanitize-html.js index be6ca4f..247a510 100644 --- a/dist/es6/sanitize-html.js +++ b/dist/es6/sanitize-html.js @@ -4,7 +4,7 @@ var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; export class SanitizeHtmlValueConverter { static metadata(){ - return Behavior.valueConverter('sanitize-html'); + return Behavior.valueConverter('sanitizeHtml'); } static defaultSanitizer(untrustedMarkup){ diff --git a/dist/system/sanitize-html.js b/dist/system/sanitize-html.js index 6ab3b5b..9cf85d5 100644 --- a/dist/system/sanitize-html.js +++ b/dist/system/sanitize-html.js @@ -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 diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 3f40751..abc75bd 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 3a6f5c8..14aeda2 100644 --- a/package.json +++ b/package.json @@ -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",