diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e3ab1c..c8aa826 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,8 +22,9 @@ The Zapit main window will print a notification in the title bar when a new vers * Bugfix: under some condition laser remained on after trial ended. * Add custom icon to window. * With no laser calibration file we employ a linear fit and ditch the error message. - In practice the fit is pretty good. + In practice the fit is pretty good after tweaking. * Remove Tools menu. + * Fix AI code in dotNETwrapper. 2023/02/01 -- v0.10.2 diff --git a/zapit/+zapit/version.m b/zapit/+zapit/version.m index 4fe0beb..6cc3eb8 100644 --- a/zapit/+zapit/version.m +++ b/zapit/+zapit/version.m @@ -29,7 +29,7 @@ %% EDIT THE FOLLOWING TO INCREMENT THE VERSION out.version.MAJOR = 0; out.version.MINOR = 10; -out.version.PATCH = 2; +out.version.PATCH = 3; %% Since v0.10.0 (2023/02/01) the preReleaseString will likely remain empty. out.version.preReleaseString = ''; @@ -37,7 +37,7 @@ %%% UPDATE THE DATE out.date.year = 2023; out.date.month = 2; -out.date.day = 1; +out.date.day = 2;