OLD | NEW |
(Empty) | |
| 1 #!/bin/bash |
| 2 # |
| 3 # @license |
| 4 # Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 5 # This code may only be used under the BSD style license found at http://polymer
.github.io/LICENSE.txt |
| 6 # The complete set of authors may be found at http://polymer.github.io/AUTHORS.t
xt |
| 7 # The complete set of contributors may be found at http://polymer.github.io/CONT
RIBUTORS.txt |
| 8 # Code distributed by Google as part of the polymer project is also |
| 9 # subject to an additional IP rights grant found at http://polymer.github.io/PAT
ENTS.txt |
| 10 # |
| 11 |
| 12 # tags sorted semver style |
| 13 TAGS=($(git tag -l | sort -k1,1r -k2,2r -k3,3r -t.)) |
| 14 |
| 15 TO=(${TAGS[@]}) |
| 16 |
| 17 FROM=(${TAGS[@]:1}) |
| 18 FROM+=(`git rev-list --max-parents=0 HEAD`) |
| 19 |
| 20 for i in ${!FROM[@]}; do |
| 21 echo "### ${TO[$i]}" |
| 22 git log ${FROM[$i]}..${TO[$i]} --pretty="- %s" |
| 23 done |
OLD | NEW |