diff --git a/Changelog.txt b/Changelog.txt index 2b35a84..673ae33 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,3 +1,8 @@ +2019-10-02 (v2.10): + - Fix fuse read issue with MCUs that don't have all low, high and extended fuses + - Update avrdude.conf to allow setting the CFD bit (Disable Clock Failure Detection) in the extended fuse for the ATmega328PB + - Update URLs to HTTPS + 2019-09-06 (v2.9): - Added French translation - Added Russian translation diff --git a/installer/avrdudess.iss b/installer/avrdudess.iss index 6616474..65ffc2c 100644 --- a/installer/avrdudess.iss +++ b/installer/avrdudess.iss @@ -3,7 +3,7 @@ #define MyAppName "AVRDUDESS" #define MyAppDescription "A GUI for AVRDUDE" -#define MyAppVersion "2.9" +#define MyAppVersion "2.10" #define MyAppPublisher "Zak Kemble" #define MyAppURL "https://zakkemble.net/" #define MyAppExeName "avrdudess.exe" diff --git a/src/avrdudess/Properties/AssemblyInfo.cs b/src/avrdudess/Properties/AssemblyInfo.cs index aa5d759..edca289 100644 --- a/src/avrdudess/Properties/AssemblyInfo.cs +++ b/src/avrdudess/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.9.*")] -[assembly: AssemblyFileVersion("2.9.0.0")] +[assembly: AssemblyVersion("2.10.*")] +[assembly: AssemblyFileVersion("2.10.0.0")]