mirror of
https://github.com/jquery/jquery.git
synced 2026-02-01 12:25:02 -05:00
Build: append "+compat" to tag version and jQuery.fn.jquery
Fixes gh-2269 Close gh-2270
This commit is contained in:
@@ -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 );
|
||||
},
|
||||
/**
|
||||
|
||||
@@ -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 ) {
|
||||
|
||||
Reference in New Issue
Block a user