Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge News and Version Updates Into Next Dev Branch #261

Merged
merged 3 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
--- 1.19 (current) ---
--- 1.20 (current) ---
Improvements:
- Improve and expand CI testing
- Fix compilation and testing for an expanded range of platforms, compilers, and operating systems
- Fix numerous sanitizer errors
- Remove some unused/outdated code

--- 1.19 ---

New Features:
- Add a mechanism to reset the default task spawn order
Expand Down
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
Loading