Skip to content

Commit 7015ebe

Browse files
committed
Update for release of version 6.4
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1523 81a1dc3b-b13d-400b-aceb-764788c761c2
1 parent 02a2cab commit 7015ebe

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2021-12-16 Joerg Wunsch <[email protected]>
2+
3+
* configure.ac (AC_INIT): Bump version to 6.4
4+
* main.c: Remove unmaintained year numbers from Copyright
5+
16
2021-12-06 Joerg Wunsch <[email protected]>
27

38
bug #57338: if safemode has to change fuses avrdude should exit with non-zero exit code

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Approximate change log for AVRDUDE by version.
55
(For more detailed changes, see the ChangeLog file.)
66

77
----------------------------------------------------------------------
8-
Current:
8+
Version 6.4:
99

1010
* Major changes compared to the previous version:
1111

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Process this file with autoconf to produce a configure script.
2424

2525
AC_PREREQ(2.60)
26-
AC_INIT(avrdude, 6.3-20211205, [email protected])
26+
AC_INIT(avrdude, 6.4, [email protected])
2727

2828
AC_CANONICAL_BUILD
2929
AC_CANONICAL_HOST

main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* avrdude - A Downloader/Uploader for AVR device programmers
33
* Copyright (C) 2000-2005 Brian S. Dean <[email protected]>
4-
* Copyright 2007-2014 Joerg Wunsch <[email protected]>
4+
* Copyright Joerg Wunsch <[email protected]>
55
*
66
* This program is free software; you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
@@ -677,8 +677,8 @@ int main(int argc, char * argv [])
677677
* they are running
678678
*/
679679
avrdude_message(MSG_NOTICE, "\n%s: Version %s\n"
680-
"%sCopyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/\n"
681-
"%sCopyright (c) 2007-2014 Joerg Wunsch\n\n",
680+
"%sCopyright (c) Brian Dean, http://www.bdmicro.com/\n"
681+
"%sCopyright (c) Joerg Wunsch\n\n",
682682
progname, version, progbuf, progbuf);
683683
avrdude_message(MSG_NOTICE, "%sSystem wide configuration file is \"%s\"\n",
684684
progbuf, sys_config);

0 commit comments

Comments
 (0)