]> source.dussan.org Git - jquery-ui.git/commitdiff
Build: Remove summary from changelog.
authorScott González <scott.gonzalez@gmail.com>
Fri, 21 Sep 2012 00:36:39 +0000 (20:36 -0400)
committerScott González <scott.gonzalez@gmail.com>
Fri, 21 Sep 2012 00:36:39 +0000 (20:36 -0400)
build/release/changelog-shell
build/release/release.js

index 7e951d7a6fd9a1ffb1170d688fa94f5eb06df51d..9c9df935086149caef842fbd3535d3b39e0200d4 100644 (file)
@@ -22,9 +22,6 @@ DELETE EVERYTHING ABOVE THE FOLLOWING LINE
        "title": "{title}"
 }</script>
 
-## Summary
-{summary}
-
 ## Build
 
 ## Core &amp; Utilities
index 6939c8611c2ad12f0737e7a4a11297597135c215..b26f9e9fc1406cd1021ea6a7af55c0182e6ba46b 100644 (file)
@@ -1,7 +1,6 @@
 #!/usr/bin/env node
 
-var baseDir, repoDir, majorMinorVersion, patchVersion, prevVersion, newVersion,
-       nextVersion, tagTime,
+var baseDir, repoDir, prevVersion, newVersion, nextVersion, tagTime,
        fs = require( "fs" ),
        path = require( "path" ),
        // support: node <0.8
@@ -110,8 +109,6 @@ function getVersions() {
                abort( "This script is not smart enough to handle the 2.0.0 release." );
        }
 
-       majorMinorVersion =  [ major, minor ].join( "." );
-       patchVersion = patch;
        prevVersion = patch === 0 ?
                [ major, minor - 1, 0 ].join( "." ) :
                [ major, minor, patch - 1 ].join( "." );
@@ -197,12 +194,7 @@ function generateChangelog() {
                changelog = cat( "build/release/changelog-shell" ) + "\n",
                fullFormat = "* %s (TICKETREF, [%h](http://github.com/jquery/jquery-ui/commit/%H))";
 
-       changelog = changelog
-               .replace( "{title}", "jQuery UI " + newVersion + " Changelog" )
-               .replace( "{summary}", patchVersion === 0 ?
-                       "This is the final release of jQuery UI " + majorMinorVersion + "." :
-                       "This is the " + ordinal( patchVersion ) + " maintenance release for " +
-                               "[jQuery UI " + majorMinorVersion + "](/changelog/" + majorMinorVersion + ")." );
+       changelog = changelog.replace( "{title}", "jQuery UI " + newVersion + " Changelog" );
 
        echo ( "Adding commits..." );
        commits = gitLog( fullFormat );
@@ -330,30 +322,6 @@ function writePackage( pkg ) {
                JSON.stringify( pkg, null, "\t" ) + "\n" );
 }
 
-function ordinal( number ) {
-       return number === 1 ? "first" :
-               number === 2 ? "second" :
-               number === 3 ? "third" :
-               number === 4 ? "fourth" :
-               number === 5 ? "fifth" :
-               number === 6 ? "sixth" :
-               number === 7 ? "seventh" :
-               number === 8 ? "eighth" :
-               number === 9 ? "ninth" :
-               number === 10 ? "tenth" :
-               number === 11 ? "eleventh" :
-               number === 12 ? "twelfth" :
-               number === 13 ? "thirteenth" :
-               number === 14 ? "fourteenth" :
-               number === 15 ? "fifteenth" :
-               number === 16 ? "sixteenth" :
-               number === 17 ? "seventeenth" :
-               number === 18 ? "eighteenth" :
-               number === 19 ? "nineteenth" :
-               number === 20 ? "twentieth" :
-               "twenty " + ordinal( number - 20 );
-}
-
 function bootstrap( fn ) {
        console.log( "Determining directories..." );
        baseDir = process.cwd() + "/__release";