Skip to content

Commit 6b4ea78

Browse files
authored
July 9, 2025 (#238)
1 parent c4d538c commit 6b4ea78

File tree

8 files changed

+15
-9
lines changed

8 files changed

+15
-9
lines changed

.nuget/directxmesh_desktop_2019.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Windows desktop applications using Visual Studio 2019 (16.11) or Visual Studio 2022 on Windows 8.1 or later.
1111

1212
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
13-
<releaseNotes>Matches the March 24, 2025 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the July 9, 2025 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
1616
<icon>images\icon.jpg</icon>

.nuget/directxmesh_desktop_win10.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Windows desktop applications using Visual Studio 2022 on Windows 10 / Windows 11 including both DirectX 11 and DirectX 12.
1111

1212
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
13-
<releaseNotes>Matches the March 24, 2025 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the July 9, 2025 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
1616
<icon>images\icon.jpg</icon>

.nuget/directxmesh_uwp.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Universal Windows Platform apps on Windows 10 / Windows 11 using Visual Studio 2022.
1111

1212
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
13-
<releaseNotes>Matches the March 24, 2025 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the July 9, 2025 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
1616
<icon>images\icon.jpg</icon>

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Releases available for download on [GitHub](https://github.com/microsoft/DirectX
66

77
## Release History
88

9+
### July 9, 2025
10+
* Reformat source using updated .editorconfig settings and general lint cleanup
11+
* WaveFrontReader non-text data file error handling
12+
* Minor code review
13+
* CMake project updates
14+
915
### March 24, 2025
1016
* Retired support for Windows 7 and Windows 8.0
1117
* CMake project updates including support for BUILD_SHARED_LIBS (i.e. DLL vs. static library)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required (VERSION 3.20)
55

6-
set(DIRECTXMESH_VERSION 1.6.8)
6+
set(DIRECTXMESH_VERSION 1.6.9)
77

88
project(DirectXMesh
99
VERSION ${DIRECTXMESH_VERSION}

DirectXMesh/DirectXMesh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include <DirectXCollision.h>
4141
#include <DirectXPackedVector.h>
4242

43-
#define DIRECTX_MESH_VERSION 168
43+
#define DIRECTX_MESH_VERSION 169
4444

4545
#if defined(_WIN32) && defined(DIRECTX_MESH_EXPORT)
4646
#ifdef __GNUC__

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ http://go.microsoft.com/fwlink/?LinkID=324981
66

77
Copyright (c) Microsoft Corporation.
88

9-
## March 24, 2025
9+
## July 9, 2025
1010

1111
This package contains DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.
1212

build/preparerelease.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ else {
6969

7070
$newversion = $newrawversion[0] + "." + $newrawversion[1] + "." + $newrawversion[2]
7171

72-
$rawreleasedate = $(Get-Content $readme) | Select-String -Pattern "\*\*[A-Z][a-z]+\S.\d+,?\S.\d\d\d\d\*\*"
72+
$rawreleasedate = $(Get-Content $readme) | Select-String -Pattern "\#\#\s.[A-Z][a-z]+\S.\d+,?\S.\d\d\d\d"
7373
if ([string]::IsNullOrEmpty($rawreleasedate)) {
7474
Write-Error "ERROR: Failed to current release date!" -ErrorAction Stop
7575
}
76-
$releasedate = $rawreleasedate -replace '\*',''
76+
$releasedate = $rawreleasedate -replace '## ',''
7777

7878
if($releasedate -eq $newreleasedate) {
7979
Write-Error ("ERROR: Release "+$releasedate+" already exists!") -ErrorAction Stop
@@ -102,7 +102,7 @@ if($UpdateVersion) {
102102
(Get-Content $header).Replace("#define DIRECTX_MESH_VERSION $rawversion","#define DIRECTX_MESH_VERSION $newrawversion") | Set-Content $header
103103
}
104104

105-
(Get-Content $readme).Replace("$rawreleasedate", "**$newreleasedate**") | Set-Content $readme
105+
(Get-Content $readme).Replace("$rawreleasedate", "## $newreleasedate") | Set-Content $readme
106106

107107
Get-ChildItem -Path ($reporoot + "\.nuget") -Filter *.nuspec | Foreach-Object {
108108
(Get-Content -Path $_.Fullname).Replace("$releasedate", "$newreleasedate") | Set-Content -Path $_.Fullname -Encoding utf8

0 commit comments

Comments
 (0)