-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resolve latest release and use that to name folder. also revert pom v…
…ersion bump (#393)
- Loading branch information
1 parent
7eddec2
commit 7afc938
Showing
3 changed files
with
40 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.mathworks.ci.tools; | ||
|
||
/** | ||
* Copyright 2025, The MathWorks, Inc. | ||
*/ | ||
|
||
public class MatlabRelease { | ||
public String name; | ||
public boolean isPrerelease; | ||
|
||
public MatlabRelease(String name, boolean isPrerelease) { | ||
this.name = name; | ||
this.isPrerelease = isPrerelease; | ||
} | ||
} |