From 06353a9d34c5c2b33de0f71f4e28cdce89d6a442 Mon Sep 17 00:00:00 2001
From: Rob Eisenberg <rob@bluespire.com>
Date: Wed, 25 Mar 2015 02:18:39 -0400
Subject: [PATCH] chore(all): prepare release 0.9.1

---
 bower.json                     | 2 +-
 dist/amd/sanitize-html.js      | 2 +-
 dist/commonjs/sanitize-html.js | 2 +-
 dist/es6/sanitize-html.js      | 2 +-
 dist/system/sanitize-html.js   | 2 +-
 doc/CHANGELOG.md               | 8 ++++++++
 package.json                   | 2 +-
 7 files changed, 14 insertions(+), 6 deletions(-)

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\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/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",