diff --git a/ChangeLog b/ChangeLog index 537973bb..a8c99d1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2021-12-16 Joerg Wunsch + + * configure.ac (AC_INIT): Bump version to 6.4 + * main.c: Remove unmaintained year numbers from Copyright + 2021-12-06 Joerg Wunsch bug #57338: if safemode has to change fuses avrdude should exit with non-zero exit code diff --git a/NEWS b/NEWS index 556ddde2..36a360f4 100644 --- a/NEWS +++ b/NEWS @@ -5,7 +5,7 @@ Approximate change log for AVRDUDE by version. (For more detailed changes, see the ChangeLog file.) ---------------------------------------------------------------------- -Current: +Version 6.4: * Major changes compared to the previous version: diff --git a/configure.ac b/configure.ac index 057f7d79..91fcf67a 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.60) -AC_INIT(avrdude, 6.3-20211205, avrdude-dev@nongnu.org) +AC_INIT(avrdude, 6.4, avrdude-dev@nongnu.org) AC_CANONICAL_BUILD AC_CANONICAL_HOST diff --git a/main.c b/main.c index 7f179d40..480e1dba 100644 --- a/main.c +++ b/main.c @@ -1,7 +1,7 @@ /* * avrdude - A Downloader/Uploader for AVR device programmers * Copyright (C) 2000-2005 Brian S. Dean - * Copyright 2007-2014 Joerg Wunsch + * Copyright Joerg Wunsch * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -677,8 +677,8 @@ int main(int argc, char * argv []) * they are running */ avrdude_message(MSG_NOTICE, "\n%s: Version %s\n" - "%sCopyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/\n" - "%sCopyright (c) 2007-2014 Joerg Wunsch\n\n", + "%sCopyright (c) Brian Dean, http://www.bdmicro.com/\n" + "%sCopyright (c) Joerg Wunsch\n\n", progname, version, progbuf, progbuf); avrdude_message(MSG_NOTICE, "%sSystem wide configuration file is \"%s\"\n", progbuf, sys_config);