Skip to content

Commit dd7216f

Browse files
authored
Merge pull request #137 from janciesko/update_news_Aug2023
Update NEWS and version number for 1.19 release
2 parents c4c5c6e + f6bfbde commit dd7216f

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

NEWS

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
--- 1.18 (current) ---
1+
--- 1.19 (current) ---
2+
3+
New Features:
4+
- Add a mechanism to reset the default task spawn order
5+
- Enable the use of HWLOC_GET_TOPOLOGY_FUNCTION
6+
7+
Improvements:
8+
- Fix fast context swap on ARM64
9+
- Mature support of ARM64 for Apple MacOS and Linux
10+
- Improvements to testing
11+
- Improvements to configure scripts
12+
- Remove unused files
13+
- Make version numbering consistent
14+
15+
Notes:
16+
- Software repository migrated to new locaton
17+
18+
--- 1.18 ---
219

320
New Features:
421
- Add support for Apple Mac Mx hardware

include/qthread/qthread.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* EXT = rc
6666
* EXT_NUMBER = 1
6767
*/
68-
#define QTHREAD_VERSION "1.18"
68+
#define QTHREAD_VERSION "1.19"
6969

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

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

0 commit comments

Comments
 (0)