-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCFF_coffee_version.m
49 lines (45 loc) · 1.72 KB
/
CFF_coffee_version.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
function ver = CFF_coffee_version()
%CFF_COFFEE_VERSION Get version of CoFFee
%
% Get version of coffee.
%
% IMPORTANT NOTES FOR DEVELOPERS:
%
% 1. It is crucial that this function STAYS at the root of the CoFFee
% folder. DO NOT MOVE IT.
%
% 2. Whenever you develop/modify CoFFee and intend to tag that new commit
% on git, please update this function appropriately before. Keep the
% existing version as a comment and add the new one as a new line above.
% Add the date. Using standard semantic versioning rules aka
% MAJOR.MINOR.PATCH. If pre-release, follow with dash, alpha/beta/rc, dot
% and a single version number. See info on:
% https://semver.org/
% https://interrupt.memfault.com/blog/release-versioning
%
% See also CFF_GET_CURRENT_FDATA_VERSION.
% Copyright 2022-2024 Alexandre Schimel
% Licensed under MIT. Details on https://github.com/alexschimel/CoFFee/
ver = '2.0.0-alpha.22'; % 16/12/2024
% ver = '2.0.0-alpha.21'; % 16/08/2024
% ver = '2.0.0-alpha.20'; % 13/06/2024
% ver = '2.0.0-alpha.19'; % 27/05/2024
% ver = '2.0.0-alpha.18'; % 22/05/2024
% ver = '2.0.0-alpha.17'; % 28/03/2024
% ver = '2.0.0-alpha.16'; % 19/03/2024
% ver = '2.0.0-alpha.15'; % 01/03/2024
% ver = '2.0.0-alpha.14'; % 13/02/2024
% ver = '2.0.0-alpha.13'; % 23/10/2023
% ver = '2.0.0-alpha.12'; % 19/10/2023
% ver = '2.0.0-alpha.11'; % 27/07/2023
% ver = '2.0.0-alpha.10'; % 26/07/2023
% ver = '2.0.0-alpha.9'; % 14/07/2023
% ver = '2.0.0-alpha.8'; % 07/07/2023
% ver = '2.0.0-alpha.7'; % 17/03/2023
% ver = '2.0.0-alpha.6'; % 09/01/2023
% ver = '2.0.0-alpha.5'; % 08/09/2022
% ver = '2.0.0-alpha.4'; % 02/09/2022
% ver = '2.0.0-alpha.3'; % 12/08/2022
% ver = '2.0.0-alpha.2'; % 12/08/2022
% ver = '2.0.0-alpha.1'; % 11/08/2022
end