diff options
author | Simon Josefsson <simon@josefsson.org> | 2024-10-09 23:02:05 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2024-10-09 23:02:07 +0200 |
commit | bb9c30961e2a2d7e242643b6d6df7e44c3731121 (patch) | |
tree | 9f9a6906eaf4b39ec19600cd3529f30a02a19cdf | |
parent | 78455e00db59155469212fecae1362be00eb8754 (diff) | |
download | git2cl-bb9c30961e2a2d7e242643b6d6df7e44c3731121.zip git2cl-bb9c30961e2a2d7e242643b6d6df7e44c3731121.tar.gz git2cl-bb9c30961e2a2d7e242643b6d6df7e44c3731121.tar.bz2 |
Add $VERSION cookie, from gnulib's gitlog-to-changelog.
Suggested by R. Diez <rdiezmail-2006@yahoo.de>.
-rwxr-xr-x | git2cl | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1,6 +1,7 @@ #!/usr/bin/perl # Copyright (C) 2007-2024 Simon Josefsson <simon@josefsson.org> +# Copyright (C) 2008-2024 Free Software Foundation, Inc. # Copyright (C) 2007 Luis Mondesi <lemsx1@gmail.com> # # The functions mywrap, last_line_len, wrap_log_entry are derived from @@ -21,6 +22,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. +my $VERSION = '2024-10-09 21:01'; # UTC + =head1 NAME git2cl - tool to convert git logs to GNU ChangeLog @@ -381,3 +384,14 @@ if (@date + 0) $msg =~ s/[ \t]+\n/\n/g; print "\t* $msg\n"; } + +# Local Variables: +# mode: perl +# indent-tabs-mode: nil +# eval: (add-hook 'before-save-hook 'time-stamp nil t) +# time-stamp-line-limit: 50 +# time-stamp-start: "my $VERSION = '" +# time-stamp-format: "%:y-%02m-%02d %02H:%02M" +# time-stamp-time-zone: "UTC0" +# time-stamp-end: "'; # UTC" +# End: |