| OLD | NEW |
| 1 #!/bin/bash | |
| 2 # | |
| 3 # @license | |
| 4 # Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 1 # 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 | 2 # 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 | 3 # 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 | 4 # 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 | 5 # 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 | 6 # subject to an additional IP rights grant found at http://polymer.github.io/PAT
ENTS.txt |
| 10 # | |
| 11 | 7 |
| 12 # tags sorted semver style | 8 # Polymer EditorConfig |
| 13 TAGS=($(git tag -l | sort -k1,1r -k2,2r -k3,3r -t.)) | |
| 14 | 9 |
| 15 TO=(${TAGS[@]}) | 10 root = true |
| 16 | 11 |
| 17 FROM=(${TAGS[@]:1}) | 12 [*] |
| 18 FROM+=(`git rev-list --max-parents=0 HEAD`) | 13 charset = utf-8 |
| 14 indent_size = 2 |
| 15 indent_style = space |
| 16 trim_trailing_whitespace = true |
| 19 | 17 |
| 20 for i in ${!FROM[@]}; do | 18 [*.md] |
| 21 echo "### ${TO[$i]}" | 19 trim_trailing_whitespace = false |
| 22 git log ${FROM[$i]}..${TO[$i]} --pretty="- %s" | |
| 23 done | |
| OLD | NEW |