Skip to content

rybalkoss/matlab-test-2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Readme file

function [ver] = semvar()
%SEMVAR Returns app version
% Application version based on Semantic Version scheme
% The `ver` variable should be updated for each tagged realease
% For beta/dev releases, this func returls git describe --tag  string

ver = '1.3.0';
[status, command_out] = system('git describe --tag');
if ~status
    ver = command_out;
end
end
function [ver] = semvar()
%SEMVAR Returns app version
% Application version based on Semantic Version scheme
% The `ver` variable should be updated for each tagged realease
% For beta/dev releases, this func returls git describe --tag  string

ver = '1.3.0';
[status, command_out] = system('git describe --tag');
if ~status
    ver = command_out;
end
end

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages