Skip to content

Commit

Permalink
Merge pull request #137 from janciesko/update_news_Aug2023
Browse files Browse the repository at this point in the history
Update NEWS and version number for 1.19 release
  • Loading branch information
janciesko committed Aug 28, 2023
2 parents c4c5c6e + f6bfbde commit dd7216f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
19 changes: 18 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
--- 1.18 (current) ---
--- 1.19 (current) ---

New Features:
- Add a mechanism to reset the default task spawn order
- Enable the use of HWLOC_GET_TOPOLOGY_FUNCTION

Improvements:
- Fix fast context swap on ARM64
- Mature support of ARM64 for Apple MacOS and Linux
- Improvements to testing
- Improvements to configure scripts
- Remove unused files
- Make version numbering consistent

Notes:
- Software repository migrated to new locaton

--- 1.18 ---

New Features:
- Add support for Apple Mac Mx hardware
Expand Down
4 changes: 2 additions & 2 deletions include/qthread/qthread.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* EXT = rc
* EXT_NUMBER = 1
*/
#define QTHREAD_VERSION "1.18"
#define QTHREAD_VERSION "1.19"

/* * QTHREAD_NUMVERSION = [MAJ] * 10000000 + [MIN] * 100000 + [REV] * 1000
* + [EXT] * 100 + [EXT_NUMBER]
Expand All @@ -80,7 +80,7 @@
* digit for EXT, and 2 digits for EXT_NUMBER. For example, 1.17.1rc1 is
* converted to the numeric version 011701201.
*/
#define QTHREAD_NUMVERSION 011800000
#define QTHREAD_NUMVERSION 011900000

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

0 comments on commit dd7216f

Please sign in to comment.