Skip to content

Commit

Permalink
Use GNU standard for version
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Souvorov committed Mar 9, 2020
1 parent 9fd1955 commit c141358
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion gfa_connector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,11 @@ int main(int argc, const char* argv[])
}

if(argm.count("version")) {
cout << "gfa_connector v.1.1.0" << endl;
cout << "gfa_connector 1.1.0" << endl;
#ifdef SVN_REV
cout << "SVN revision:" << SVN_REV << endl << endl;
#endif
return 0;
}

ofstream gfa_out;
Expand Down
2 changes: 1 addition & 1 deletion kmercounter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ int main(int argc, const char* argv[]) {
}

if(argm.count("version")) {
cout << "kmercounter v.2.1.0";
cout << "kmercounter 2.1.0";
#ifdef SVN_REV
cout << "-SVN_" << SVN_REV;
#endif
Expand Down
2 changes: 1 addition & 1 deletion skesa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ int main(int argc, const char* argv[]) {
}

if(argm.count("version")) {
cout << "SKESA v.2.4.0";
cout << "SKESA 2.4.0";
#ifdef SVN_REV
cout << "-SVN_" << SVN_REV;
#endif
Expand Down

0 comments on commit c141358

Please sign in to comment.