Skip to content

Commit

Permalink
Version number bump for 1.21 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed Sep 27, 2024
1 parent e538dd1 commit b9ab405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/qthread/qthread.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ using std::memory_order_relaxed;
* EXT = rc
* EXT_NUMBER = 1
*/
#define QTHREAD_VERSION "1.20"
#define QTHREAD_VERSION "1.22"

/* * QTHREAD_NUMVERSION = [MAJ] * 10000000 + [MIN] * 100000 + [REV] * 1000
* + [EXT] * 100 + [EXT_NUMBER]
Expand All @@ -79,7 +79,7 @@ using std::memory_order_relaxed;
* digit for EXT, and 2 digits for EXT_NUMBER. For example, 1.17.1rc1 is
* converted to the numeric version 011701201.
*/
#define QTHREAD_NUMVERSION 012000000
#define QTHREAD_NUMVERSION 012100000

#define QTHREADS_GET_VERSION(MAJOR, MINOR, REVISION, TYPE, PATCH) \
(((MAJOR) * 10000000) + ((MINOR) * 100000) + ((REVISION) * 1000) + \
Expand Down

0 comments on commit b9ab405

Please sign in to comment.