-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
%% Curations for release version x.y.z | ||
% This script combines various curations on iYali vx.y.y to produce vx.y.z. | ||
% Indicate is which issues are solved, more detailed explanation is given in the | ||
% relevant pull requests | ||
|
||
%% Define root of repository, requires git to be installed | ||
[status,root]=system('git rev-parse --show-toplevel'); | ||
if status~=0; error('Unable to determine root of repository, is Git installed?') | ||
else; root(end)=[]; end; clear status | ||
|
||
%% Load iYali | ||
cd([root, '/code']) | ||
model = getEarlierModel('4.1.1'); % Modify to fit relevant model version | ||
|
||
%% Fixes Issue #xx | ||
% Include code here that fixes the issue. If there is a lot of code, or whenever | ||
% relevant for other reasons, you can also call other scripts from here. | ||
|
||
%% Fixes Issue #yy | ||
% Multiple issues can be fixed in one release, but keep the code separate so | ||
% it can easily be traced back to the relevant issue. | ||
|
||
%% Prepare necessary files before making pull-request to the `devel` branch | ||
cd([root, '/code']) | ||
newCommit(model) |