Skip to content

Commit

Permalink
Prepared 0.6.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cure53 committed May 25, 2015
1 parent afcdb9c commit b8b3ab6
Show file tree
Hide file tree
Showing 5 changed files with 6 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": "DOMPurify",
"version": "0.6.3",
"version": "0.6.4",
"homepage": "https://github.com/cure53/DOMPurify",
"author": "Cure53 <info@cure53.de>",
"description": "A DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"name": "dompurify",
"description": "DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. It's written in JavaScript and works in all modern browsers (Safari, Opera (15+), Internet Explorer (10+), Firefox and Chrome - as well as almost anything else using Blink or WebKit). DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not.",
"version": "0.6.3",
"version": "0.6.4",
"main": "purify.js",
"directories": {
"test": "test"
Expand Down
2 changes: 1 addition & 1 deletion purify.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Version label, exposed for easier checks
* if DOMPurify is up to date or not
*/
DOMPurify.version = '0.6.3';
DOMPurify.version = '0.6.4';

if (!window || !window.document || window.document.nodeType !== 9) {
// not running in a browser, provide a factory function
Expand Down
2 changes: 1 addition & 1 deletion test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>DOMPurify 0.6.3 "Praying Mantis" Testsuite</title>
<title>DOMPurify 0.6.4 "Omnivore" Testsuite</title>
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions website/index.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<html>
<head>
<meta charset="UTF-8">
<title>DOMPurify 0.6.3 "Praying Mantis"</title>
<title>DOMPurify 0.6.4 "Omnivore"</title>
<script src="https://rawgithub.com/cure53/DOMPurify/master/purify.js"></script>
<!-- we don't actually need it - just to demo and test the $(html) sanitation -->
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
</head>
<body>
<h4>DOMPurify 0.6.3 "Praying Mantis"</h4>
<h4>DOMPurify 0.6.4 "Omnivore"</h4>
<p>
This is the demo for <a href="https://github.com/cure53/DOMPurify">DOMPurify</a>, a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, SVG and MathML.
The textarea below contains sample-payload - you can also add your own. Watch it sanitize on the console or in the Iframe below.
Expand Down

0 comments on commit b8b3ab6

Please sign in to comment.