Skip to content

Commit d837578

Browse files
authored
February 2024 (#187)
1 parent 26559da commit d837578

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.nuget/directxmath.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<owners>microsoft,directxtk</owners>
99
<summary>DirectXMath is an all inline SIMD C++ linear algebra library for use in games and graphics apps.</summary>
1010
<description>The DirectXMath API provides SIMD-friendly C++ types and functions for common linear algebra and graphics math operations common to DirectX applications. The library provides optimized versions for Windows 32-bit (x86), Windows 64-bit (x64), and Windows on ARM through SSE2 and ARM-NEON intrinsics support in the Visual Studio compiler.</description>
11-
<releaseNotes>Matches the December 2023 release.</releaseNotes>
11+
<releaseNotes>Matches the February 2024 release.</releaseNotes>
1212
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615560</projectUrl>
1313
<repository type="git" url="https://github.com/microsoft/DirectXMath.git" />
1414
<icon>images\icon.jpg</icon>

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required (VERSION 3.20)
55

6-
set(DIRECTXMATH_VERSION 3.1.8)
6+
set(DIRECTXMATH_VERSION 3.1.9)
77

88
project(DirectXMath
99
VERSION ${DIRECTXMATH_VERSION}

HISTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXM
66

77
## Release History
88

9+
### February 2024 (3.19)
10+
* Fix to address MinGW issue with ``__cpuid`` in cpuid.h vs. intrin.h
11+
* Additional updates for clang/LLVM and GNUC
12+
* Minor comment updates
13+
914
### December 2023 (3.18b)
1015
* Hot-fix to address ``-Wunsafe-buffer-usage`` warnings from clang v16
1116
* Hot-fix to address MinGW issue with ``__cpuid`` in cpuid.h vs. intrin.h

Inc/DirectXMath.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#error DirectX Math requires C++
1414
#endif
1515

16-
#define DIRECTX_MATH_VERSION 318
16+
#define DIRECTX_MATH_VERSION 319
1717

1818
#if defined(_MSC_VER) && (_MSC_VER < 1910)
1919
#error DirectX Math requires Visual C++ 2017 or later.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://github.com/Microsoft/DirectXMath
66

77
Copyright (c) Microsoft Corporation.
88

9-
**December 2023**
9+
**February 2024**
1010

1111
This package contains the DirectXMath library, an all inline SIMD C++ linear algebra library for use in games and graphics apps.
1212

0 commit comments

Comments
 (0)