diff --git a/build/release-notes.js b/build/release-notes.js index 37b9d389..0166732e 100644 --- a/build/release-notes.js +++ b/build/release-notes.js @@ -9,9 +9,9 @@ var fs = require("fs"), extract = /(.*?)<[^"]+"component">\s*(\S+)/g; var opts = { - version: "1.6", - short_version: "1.6", - final_version: "1.6", + version: "1.6.1 RC 1", + short_version: "1.6rc1", + final_version: "1.6.1", categories: [] }; diff --git a/test/qunit b/test/qunit index d97b37ec..98876633 160000 --- a/test/qunit +++ b/test/qunit @@ -1 +1 @@ -Subproject commit d97b37ec322136406790e75d03333559f38bbecb +Subproject commit 9887663380693009874e8c76f0bf77a921931766 diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 0f980463..2f125b17 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -1398,7 +1398,7 @@ test("jQuery.buildFragment - no plain-text caching (Bug #6779)", function() { }); test( "jQuery.html - execute scripts escaped with html comment or CDATA (#9221)", function() { - expect( 2 ); + expect( 3 ); jQuery( [ '' ].join ( "\n" ) ).appendTo( "#qunit-fixture" ); + jQuery( [ + '' + ].join ( "\n" ) ).appendTo( "#qunit-fixture" ); });