Skip to content

Commit 7de563a

Browse files
committed
chore(release): version 3.7.0
1 parent b0add6b commit 7de563a

File tree

6 files changed

+23
-3
lines changed

6 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
For online version see [Github Releases].
99

10+
## [3.7.0] – 2025-03-22
11+
12+
### Added
13+
14+
- Several triangle mesh related utilities, including:
15+
- `GenerateHalfedges`;
16+
- `GenerateTriangleColors`;
17+
- `InsertSubMesh`;
18+
- `NextHalfedge`;
19+
- `Retriangulate`, an extension for `UnityEngine.Mesh`;
20+
- `RetriangulateMeshJob`.
21+
- `Triangulator` and `Triangulator<T>` now implement `INativeDisposable`.
22+
23+
### Fixed
24+
25+
- Safety handles for `NativeList`s in `UnsafeTriangulator`.
26+
1027
## [3.6.0] – 2025-02-01
1128

1229
### Added
@@ -315,6 +332,7 @@ options in the triangulation settings, aka `RestoreBoundary`.
315332

316333
[Github Releases]: https://github.com/andywiecko/BurstTriangulator/releases
317334

335+
[3.7.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v3.7.0
318336
[3.6.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v3.6.0
319337
[3.5.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v3.5.0
320338
[3.4.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v3.4.0

Documentation~/manual/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Then, in the dependencies section, provide the desired version of the package:
2828

2929
```json
3030
"dependencies": {
31-
"com.andywiecko.burst.triangulator": "3.6.0",
31+
"com.andywiecko.burst.triangulator": "3.7.0",
3232
...
3333
```
3434

Documentation~/manual/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ To showcase the functionality of our package, we provide an illustrative example
2828
- [Native support](advanced/unsafe-triangulator.md) (low level API)
2929
- [Managed input support](advanced/input-managed.md)
3030
- [Dynamic triangulation](advanced/dynamic-triangulation.md)
31+
- [Triangle mesh utilities](utilities.md)

Documentation~/override/partials/breadcrumb.tmpl.partial

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
<div class="container" style="
1414
width: 80px;
1515
line-height: 40px;
16-
"><b>v3.6.0</b></div>
16+
"><b>v3.7.0</b></div>
1717
</div>
1818
</div>

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ A single-file package which provides Delaunay triangulation of the given set of
2121
- **Native support** (low level API) [ᵈᵒᶜˢ](https://andywiecko.github.io/BurstTriangulator/manual/advanced/unsafe-triangulator.html)
2222
- **Managed input support** [ᵈᵒᶜˢ](https://andywiecko.github.io/BurstTriangulator/manual/advanced/input-managed.html)
2323
- **Dynamic triangulation** [ᵈᵒᶜˢ](https://andywiecko.github.io/BurstTriangulator/manual/advanced/dynamic-triangulation.html)
24+
- **Triangle mesh utilities** [ᵈᵒᶜˢ](https://andywiecko.github.io/BurstTriangulator/manual/utilities.html)
2425

2526
To view the documentation for the manual and scripting API access it online [**here**][manual] or navigate to `Documentation~/` and build this using `docfx.json`.
2627

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.andywiecko.burst.triangulator",
3-
"version": "3.6.0",
3+
"version": "3.7.0",
44
"displayName": "Burst Triangulator",
55
"description": "A single-file package which provides Delaunay triangulation of the given set of points with constraints and mesh refinement.",
66
"unity": "2022.2",

0 commit comments

Comments
 (0)