Skip to content

Commit d5e4f0d

Browse files
Update version number for 1.20 release.
1 parent f4bcfc7 commit d5e4f0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/qthread/qthread.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ using std::memory_order_relaxed;
7575
* EXT = rc
7676
* EXT_NUMBER = 1
7777
*/
78-
#define QTHREAD_VERSION "1.19"
78+
#define QTHREAD_VERSION "1.20"
7979

8080
/* * QTHREAD_NUMVERSION = [MAJ] * 10000000 + [MIN] * 100000 + [REV] * 1000
8181
* + [EXT] * 100 + [EXT_NUMBER]
@@ -90,7 +90,7 @@ using std::memory_order_relaxed;
9090
* digit for EXT, and 2 digits for EXT_NUMBER. For example, 1.17.1rc1 is
9191
* converted to the numeric version 011701201.
9292
*/
93-
#define QTHREAD_NUMVERSION 011900000
93+
#define QTHREAD_NUMVERSION 012000000
9494

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

0 commit comments

Comments
 (0)