From 7015ebe0d6b6087ed5dfaa20992bd055a4b009cc Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Thu, 16 Dec 2021 21:02:35 +0000 Subject: [PATCH] Update for release of version 6.4 git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1523 81a1dc3b-b13d-400b-aceb-764788c761c2 --- ChangeLog | 5 +++++ NEWS | 2 +- configure.ac | 2 +- main.c | 6 +++--- 4 files changed, 10 insertions(+), 5 deletions(-) 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);