Skip to content

Commit

Permalink
Update version number for new dev release
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Cheng committed Mar 12, 2024
1 parent 4430f59 commit 4634c58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ scripts/flexiplex_filter.egg-info

__pycache__/
flexiplex
compile_commands.json
.cache/clangd/index
4 changes: 2 additions & 2 deletions flexiplex.c++
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ using namespace std;

// Append .1 to version for dev code, remove for release
// e.g. 1.00.1 (dev) goes to 1.01 (release)
const static string VERSION="1.01";
const static string VERSION="1.02.1";

struct PredefinedStruct {
string description;
string params;
};


// predefined settings for known barcode/search schemes
// new setting added to this map will automatically be available
static const map< string, PredefinedStruct> predefinedMap = {
Expand All @@ -45,7 +46,6 @@ static const map< string, PredefinedStruct> predefinedMap = {
"-f 2 -k ? -b \'\' -u \'\' -i false"}}
};


// the help information which is printed when a user puts in the wrong
// combination of command line options.
void print_usage(){
Expand Down

0 comments on commit 4634c58

Please sign in to comment.