Version update and CHANGELOG entry.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@151 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
bsd 2002-11-01 14:46:20 +00:00
parent 4aa81bac9b
commit 4f818a067b
2 changed files with 10 additions and 1 deletions

View File

@ -4,6 +4,15 @@ Approximate change log for AVRPROG by version
----------------------------------------------------------------------
Version 2.1.3:
* Be backward compatible when reading 2-byte rewrite cycle counters
as written by avrprog version 2.1.0. Version 2.1.1 changed over
to a 4-byte counter, which caused avrprog versions 2.1.1 and 2.1.2
to report a negative count for parts that were initialized using
version 2.1.0. Thanks to Joerg Wunsch for noticing this.
Version 2.1.2:
* Add '-V' option to disable automatic verify check with uploading

2
main.c
View File

@ -115,7 +115,7 @@ char ** modules[N_MODULES] = {
&term_version
};
char * version = "2.1.2";
char * version = "2.1.3";
char * main_version = "$Id$";