Build: append "+compat" to tag version and jQuery.fn.jquery

Fixes gh-2269
Close gh-2270
This commit is contained in:
Timmy Willison
2015-05-06 14:36:47 -07:00
parent 590eff6397
commit d18b645788
2 changed files with 3 additions and 3 deletions

View File

@@ -24,12 +24,12 @@ module.exports = function( Release ) {
* The tag for compat is different
* This sets a different new version for the source repo,
* but after building with the correct tag
* e.g. 3.0.0-compat
* e.g. 3.0.0+compat
*/
_createTag: function( paths ) {
Release.distVersion = Release.newVersion;
Release.newVersion = Release.newVersion
.replace( /(\d+\.\d+\.\d+)/, "$1-compat" );
.replace( /(\d+\.\d+\.\d+)/, "$1+compat" );
return createTag( paths );
},
/**

View File

@@ -11,7 +11,7 @@ define([
], function( deletedIds, slice, concat, push, indexOf, class2type, toString, hasOwn, support ) {
var
version = "@VERSION",
version = "@VERSION+compat",
// Define a local copy of jQuery
jQuery = function( selector, context ) {