Tagging the 1.8.2 release.

This commit is contained in:
Dave Methvin 2012-09-20 21:12:38 -04:00
parent 044ee41282
commit 6e995583a1
2 changed files with 9 additions and 5 deletions

View File

@ -5,7 +5,7 @@
// Debugging variables
var debug = false,
skipRemote = true;
skipRemote = false;
var fs = require("fs"),
child = require("child_process"),
@ -52,6 +52,13 @@ steps(
);
function initialize( next ) {
if ( process.argv[2] === "-d" ) {
process.argv.shift();
debug = true;
console.warn("=== DEBUG MODE ===" );
}
// First arg should be the version number being released
var newver, oldver,
rversion = /^(\d)\.(\d+)\.(\d)((?:a|b|rc)\d|pre)?$/,
@ -74,9 +81,6 @@ function initialize( next ) {
if ( !(fs.existsSync || path.existsSync)( "package.json" ) ) {
die( "No package.json in this directory" );
}
if ( debug ) {
console.warn("=== DEBUG MODE ===" );
}
pkg = JSON.parse( fs.readFileSync( "package.json" ) );
console.log( "Current version is " + pkg.version + "; generating release " + releaseVersion );

View File

@ -2,7 +2,7 @@
"name": "jquery",
"title": "jQuery",
"description": "JavaScript library for DOM operations",
"version": "1.8.2pre",
"version": "1.8.2",
"homepage": "http://jquery.com",
"author": {
"name": "jQuery Foundation and other contributors",