diff --git a/Makefile b/Makefile index 4c1d694d..03b70997 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJ = FlashFloppy -VER = v0.9.21a +VER = v0.9.22a SUBDIRS += src bootloader reloader diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 24886191..48211935 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,7 +3,7 @@ ** Keir Fraser ************************************ -** v0.9.22a - forthcoming +** v0.9.22a - 20 June 2018 - OLED: Support SH1106 controller (1.3-inch displays) - FF.CFG: display-type = oled-128x64-sh1106 - Support a wider range of rotary encoders diff --git a/inc/util.h b/inc/util.h index 7ff50e42..82522f1e 100644 --- a/inc/util.h +++ b/inc/util.h @@ -9,7 +9,7 @@ * See the file COPYING for more details, or visit . */ -#define FW_VER "0.9.21a" +#define FW_VER "0.9.22a" #ifndef NDEBUG #define ASSERT(p) do { if (!(p)) illegal(); } while (0)