Skip to content

Commit 2586276

Browse files
Michael BrowneMichael Browne
Michael Browne
authored and
Michael Browne
committed
v1.0.8 updates
1 parent 6ebabd5 commit 2586276

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: RELEASENOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# MATLAB Generator *for OpenAPI*
22

3+
## Version 1.0.8 (October 26th 2023)
4+
5+
* Minor bug fix to Client error message handling
6+
37
## Version 1.0.7 (October 3rd 2023)
48

59
* Add validation to MATLAB client packageName property

Diff for: Software/MATLAB/app/system/+openapi/+build/@Client/Client.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -897,11 +897,11 @@ function buildAdditionalPropertiesFileEntry(obj)
897897
if str2double(fields{1}) >= 11 % Not clear what upper bound is TBD
898898
tf = true;
899899
else
900-
warning('Client:checkJavacVersion','Javac 11 or compatible is required, found: %s', cmdout);
900+
warning('Client:checkJavacVersion','Javac 11 or compatible is required, found: %s', cmdOut);
901901
tf = false;
902902
end
903903
else
904-
warning('Client:checkcJavaVersion','Javac version could not be determined: %s', cmdout);
904+
warning('Client:checkcJavaVersion','Javac version could not be determined: %s', cmdOut);
905905
tf = false;
906906
end
907907
else
@@ -910,4 +910,4 @@ function buildAdditionalPropertiesFileEntry(obj)
910910
end
911911
end
912912
end
913-
end %class
913+
end %class

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.7
1+
1.0.8

0 commit comments

Comments
 (0)