diff --git a/ChangeLog.md b/ChangeLog.md index c4d8e985..5c2a9737 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -14,7 +14,6 @@ These items are in addition to what was listed under changes already in release. * Add support `_getCurrentMillisTimer()` and `getCurrentMillisMode()`, required for sleepTime. - #### Enhancements which do not have a strict timeline or are ongoing * Finally implement that power save and sleep library I've been talking about for years. * @@ -26,9 +25,16 @@ These items are in addition to what was listed under changes already in release. Changes listed here are checked in to GitHub ("master" branch unless specifically noted; this is only done when a change involves a large amount of work and breaks the core in the interim, or where the change is considered very high risk, and needs testing by others prior to merging the changes with master - everything else goes straight into master). These changes are not yet in any "release" nor can they be installed through board manager, only downloading latest code from github will work. These changes will be included in the listed version, though planned version numbers may change without notice - critical fixes may be inserted before a planned release and the planned release bumped up a version, or versions may go from patch to minor version depending on the scale of changes + + ## Released Versions -### 2.6.9 +### 2.6.10 - Critical fix +* Critical bugfix: Have to reroll release and change to versiuon azduinio7b. It is *binary identical* to azduino7, but I pushed out the wrong CRC in the json file +* Bugfix: #1014, named constants for ADCPowerOptions() did not work on 0/1-series parts. The 4 valid options are now given named defines, and the rest are #defined as `badArg("This option is on 2-series tiny and AVR Ex-series only")` + +### ~2.6.9~ +**Note** This version does not install on windows. Use 2.6.10 * Bugfix: optiboot_x.c that has been in use since newyears day 2023 was never committed. * Bugfix: Remove boot_opt.h which is not applicable to modern AVRs. * Bugfix: Remove the useless dummy app that forced us to use avr-size -A to see the size of the bootloader separated from the app, and switch avr-size -A to normal avr-size to take advantage of this. diff --git a/megaavr/platform.txt b/megaavr/platform.txt index bcf4f76a..665cba24 100644 --- a/megaavr/platform.txt +++ b/megaavr/platform.txt @@ -7,7 +7,7 @@ name=megaTinyCore versionnum.major=2 versionnum.minor=6 -versionnum.patch=9 +versionnum.patch=10 versionnum.postfix= versionnum.released=1 @@ -16,7 +16,7 @@ version={versionnum.major}.{versionnum.minor}.{versionnum.patch}{versionnum.post # Stupid workaround # # for IDE bug # ##################### -version=2.6.9.1 +version=2.6.10.1 build.versiondefines=-DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} -DMEGATINYCORE="{version}" -DMEGATINYCORE_MAJOR={versionnum.major}UL -DMEGATINYCORE_MINOR={versionnum.minor}UL -DMEGATINYCORE_PATCH={versionnum.patch}UL -DMEGATINYCORE_RELEASED={versionnum.released}