Skip to content

Commit

Permalink
chore(release): version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andywiecko committed Aug 3, 2024
1 parent f39928c commit d09128c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

For online version see [Github Releases].

## [3.1.0] – 2024-08-01

### Added

- Native support with a low-level API for triangulation via `UnsafeTriangulator<T>`. This allows for customization of steps and calling triangulation directly from jobs.
- Extensions for `UnsafeTriangulator<T>`: `Triangulate`, `PlantHoleSeeds`, and `RefineMesh`.
- Support for managed input.
- Public `ConstrainedHalfedges` in triangulation output.

### Fixed

- Edge-edge intersection for collinear non-intersecting edges (issue [#173]).

## [3.0.0] – 2024-06-30

### Added
Expand Down Expand Up @@ -197,6 +210,7 @@ options in the triangulation settings, aka `RestoreBoundary`.

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

[3.1.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v3.1.0
[3.0.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v3.0.0
[2.5.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v2.5.0
[2.4.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v2.4.0
Expand All @@ -212,6 +226,7 @@ options in the triangulation settings, aka `RestoreBoundary`.
[1.0.1]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v1.0.1
[1.0.0]: https://github.com/andywiecko/BurstTriangulator/releases/tag/v1.0.0

[#30]: https://github.com/andywiecko/BurstTriangulator/issues/30
[#173]: https://github.com/andywiecko/BurstTriangulator/issues/173
[#111]: https://github.com/andywiecko/BurstTriangulator/issues/111
[#31]: https://github.com/andywiecko/BurstTriangulator/issues/31
[#111]: https://github.com/andywiecko/BurstTriangulator/issues/111
[#30]: https://github.com/andywiecko/BurstTriangulator/issues/30
2 changes: 1 addition & 1 deletion Documentation~/manual/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Then, in the dependencies section, provide the desired version of the package:

```json
"dependencies": {
"com.andywiecko.burst.triangulator": "3.0.0",
"com.andywiecko.burst.triangulator": "3.1.0",
...
```

Expand Down
2 changes: 1 addition & 1 deletion Documentation~/override/partials/breadcrumb.tmpl.partial
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
<div class="container" style="
width: 80px;
line-height: 40px;
"><b>v3.0.0</b></div>
"><b>v3.1.0</b></div>
</div>
</div>
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ A single-file package which provides Delaunay triangulation of the given set of
- **Support for `Unity.Jobs` pipeline**
- **Input preprocessors**
- **Input validation**
- **Generic coordinates**
- **Generic coordinates** (`float2`, `double2`)
- **Native support** (low level API)
- **Managed input support**

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`.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.andywiecko.burst.triangulator",
"version": "3.0.0",
"version": "3.1.0",
"displayName": "Burst Triangulator",
"description": "A single-file package which provides Delaunay triangulation of the given set of points with constraints and mesh refinement.",
"unity": "2022.2",
Expand Down

0 comments on commit d09128c

Please sign in to comment.