Skip to content

Commit

Permalink
Update version number for 1.20 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed May 2, 2024
1 parent f4bcfc7 commit d5e4f0d
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 @@ -75,7 +75,7 @@ using std::memory_order_relaxed;
* EXT = rc
* EXT_NUMBER = 1
*/
#define QTHREAD_VERSION "1.19"
#define QTHREAD_VERSION "1.20"

/* * QTHREAD_NUMVERSION = [MAJ] * 10000000 + [MIN] * 100000 + [REV] * 1000
* + [EXT] * 100 + [EXT_NUMBER]
Expand All @@ -90,7 +90,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 011900000
#define QTHREAD_NUMVERSION 012000000

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

0 comments on commit d5e4f0d

Please sign in to comment.