Skip to content

Commit

Permalink
limit tag search, use commit date not author date
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Jun 19, 2015
1 parent 082b348 commit f05c8a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions changelog-maker.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env node

const gitcmd = 'git log --pretty=full --since="{{sincecmd}}" --until="{{untilcmd}}"'
, commitdatecmd = '$(git show -s --format=%ad `{{refcmd}}`)'
, commitdatecmd = '$(git show -s --format=%cd `{{refcmd}}`)'
, untilcmd = ''
, refcmd = 'git rev-list --max-count=1 {{ref}}'
, defaultRef = '--tags'
, defaultRef = '--tags=v*.*.*'


const spawn = require('child_process').spawn
Expand Down

0 comments on commit f05c8a0

Please sign in to comment.