Skip to content

Commit 6e99558

Browse files
committed
Tagging the 1.8.2 release.
1 parent 044ee41 commit 6e99558

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

build/release.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
// Debugging variables
77
var debug = false,
8-
skipRemote = true;
8+
skipRemote = false;
99

1010
var fs = require("fs"),
1111
child = require("child_process"),
@@ -52,6 +52,13 @@ steps(
5252
);
5353

5454
function initialize( next ) {
55+
56+
if ( process.argv[2] === "-d" ) {
57+
process.argv.shift();
58+
debug = true;
59+
console.warn("=== DEBUG MODE ===" );
60+
}
61+
5562
// First arg should be the version number being released
5663
var newver, oldver,
5764
rversion = /^(\d)\.(\d+)\.(\d)((?:a|b|rc)\d|pre)?$/,
@@ -74,9 +81,6 @@ function initialize( next ) {
7481
if ( !(fs.existsSync || path.existsSync)( "package.json" ) ) {
7582
die( "No package.json in this directory" );
7683
}
77-
if ( debug ) {
78-
console.warn("=== DEBUG MODE ===" );
79-
}
8084
pkg = JSON.parse( fs.readFileSync( "package.json" ) );
8185

8286
console.log( "Current version is " + pkg.version + "; generating release " + releaseVersion );

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jquery",
33
"title": "jQuery",
44
"description": "JavaScript library for DOM operations",
5-
"version": "1.8.2pre",
5+
"version": "1.8.2",
66
"homepage": "http://jquery.com",
77
"author": {
88
"name": "jQuery Foundation and other contributors",

0 commit comments

Comments
 (0)