From 611ac607487a8469728106ed807e277c5d95fc2a Mon Sep 17 00:00:00 2001 From: andywiecko Date: Wed, 25 Oct 2023 17:14:45 +0200 Subject: [PATCH] chore(release): version 2.3.0 --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- package.json | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a5f782..01a3239 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 For online version see [Github Releases]. +## [2.3.0] - 2023-10-25 + +### Changed + +- Improved performance by adapting triangulation with mesh refinement to a `half-edges` approach. +- Simplified the refinement job contract. +- Merged several internal jobs for better efficiency. +- General project simplification for enhanced maintainability. + +### Removed + +- Eliminated `edgeToTriangles` and `triangleToEdges` mappings. +- Removed the internal `Triangle` struct. + ## [2.2.0] ⁠– 2023-10-03 ### Changed @@ -122,6 +136,7 @@ options in the triangulation settings, aka `RestoreBoundary`. - Initial release version [Github Releases]: https://github.com/andywiecko/BurstTriangulator/releases +[2.3.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v2.3.0 [2.2.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v2.2.0 [2.1.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v2.1.0 [2.0.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v2.0.0 diff --git a/README.md b/README.md index 0fe1188..af068b0 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Add or modify scoped registries in the manifest and in the dependencies provide selected version of the package
 "dependencies": {
-    "com.andywiecko.burst.triangulator": "2.2.0",
+    "com.andywiecko.burst.triangulator": "2.3.0",
     ...
 
See Unity docs for more details https://docs.unity3d.com/2021.1/Documentation/Manual/upm-scoped.html diff --git a/package.json b/package.json index 803b212..91f716b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.andywiecko.burst.triangulator", - "version": "2.2.0", + "version": "2.3.0", "displayName": "Burst Triangulator", "description": "A single-file package which provides simple Delaunay triangulation of the given set of points with mesh refinement.", "unity": "2022.2",