Skip to content

Commit

Permalink
various: prepare version number for next release v2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lerwys committed Apr 5, 2021
1 parent 1b1b0d2 commit bbc1fc5
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/include/halcs_examples_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#define HALCS_EXAMPLES_VERSION_MAJOR 2
#define HALCS_EXAMPLES_VERSION_MINOR 4
#define HALCS_EXAMPLES_VERSION_PATCH 0
#define HALCS_EXAMPLES_VERSION_PATCH 1

#define HALCS_EXAMPLES_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion include/revision.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#define HALCS_VERSION_MAJOR 2
#define HALCS_VERSION_MINOR 4
#define HALCS_VERSION_PATCH 0
#define HALCS_VERSION_PATCH 1

#define HALCS_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion libs/acqclient/include/acq_client_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define ACQ_CLIENT_VERSION_MAJOR 2
#define ACQ_CLIENT_VERSION_MINOR 4
#define ACQ_CLIENT_VERSION_PATCH 0
#define ACQ_CLIENT_VERSION_PATCH 1

#define ACQ_CLIENT_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion libs/bpmclient/include/bpm_client_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#define BPM_CLIENT_VERSION_MAJOR 2
#define BPM_CLIENT_VERSION_MINOR 4
#define BPM_CLIENT_VERSION_PATCH 0
#define BPM_CLIENT_VERSION_PATCH 1

#define BPM_CLIENT_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion libs/convc/include/convc_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#define CONVC_VERSION_MAJOR 2
#define CONVC_VERSION_MINOR 4
#define CONVC_VERSION_PATCH 0
#define CONVC_VERSION_PATCH 1

#define CONVC_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion libs/disptable/include/disptable_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#define DISPTABLE_VERSION_MAJOR 2
#define DISPTABLE_VERSION_MINOR 4
#define DISPTABLE_VERSION_PATCH 0
#define DISPTABLE_VERSION_PATCH 1

#define DISPTABLE_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion libs/errhand/include/errhand_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#define ERRHAND_VERSION_MAJOR 2
#define ERRHAND_VERSION_MINOR 4
#define ERRHAND_VERSION_PATCH 0
#define ERRHAND_VERSION_PATCH 1

#define ERRHAND_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion libs/hutils/include/hutils_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#define HUTILS_VERSION_MAJOR 2
#define HUTILS_VERSION_MINOR 4
#define HUTILS_VERSION_PATCH 0
#define HUTILS_VERSION_PATCH 1

#define HUTILS_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion libs/llio/include/ll_io_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#define LL_IO_VERSION_MAJOR 2
#define LL_IO_VERSION_MINOR 4
#define LL_IO_VERSION_PATCH 0
#define LL_IO_VERSION_PATCH 1

#define LL_IO_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion libs/sdbutils/include/sdbutils_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#define SDBUTILS_VERSION_MAJOR 2
#define SDBUTILS_VERSION_MINOR 4
#define SDBUTILS_VERSION_PATCH 0
#define SDBUTILS_VERSION_PATCH 1

#define SDBUTILS_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion src/client/include/halcs_client_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define HALCS_CLIENT_VERSION_MAJOR 2
#define HALCS_CLIENT_VERSION_MINOR 4
#define HALCS_CLIENT_VERSION_PATCH 0
#define HALCS_CLIENT_VERSION_PATCH 1

#define HALCS_CLIENT_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down

0 comments on commit bbc1fc5

Please sign in to comment.