Skip to main content

getPipelineVersion.m


% This function is part of the NMSM Pipeline, see file for full license.
%
% This function hard codes the version of the software. It is used to
% check compatibility between the software and the settings files for
% different versions of the software.
%
% This value should be updated with each release. Please use semantic
% versioning (https://semver.org/) to determine the version number.
%
% Specifically, versions are of the form MAJOR.MINOR.PATCH
% MAJOR version when you make incompatible API changes,
% MINOR version when you add functionality in a backwards compatible manner,
% PATCH version when you make backwards compatible bug fixes.
%
% () -> (string)
% return: version number of the software as a string


function version = getPipelineVersion()
version = "1.0.1";
end