Skip to content

Commit 04d6358

Browse files
committed
Merge remote-tracking branch 'publico/master'
2 parents fa7851c + c7c6684 commit 04d6358

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

grunt.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,13 @@ grunt.registerHelper( "contributor-attribution", function( post, fileName, fn )
9393
// Read contributors from git file information
9494
grunt.utils.spawn({
9595
cmd: "git",
96-
args: [ "log", "--format=%aN <%aE>", fileName ]
96+
args: [
97+
"log",
98+
"--follow", // Trace history through file rename operations
99+
"--diff-filter=AM", // Only consider "Add" and "Modify" operations
100+
"--format=%aN <%aE>",
101+
fileName
102+
]
97103
}, function( err, result ) {
98104
if ( err ) {
99105
grunt.verbose.error();

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "learn.jquery.com",
33
"title": "jQuery Learning Site",
44
"description": "jQuery Foundation site for learning jQuery and JavaScript",
5-
"version": "0.2.9",
5+
"version": "0.3.0",
66
"homepage": "http://learn.jquery.com",
77
"author": {
88
"name": "jQuery Foundation (http://jquery.org/)"

0 commit comments

Comments
 (0)