From 907368de9fb62596918431efc41f2abe0fb3be6c Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:33:32 +0100 Subject: [PATCH] make sort_triangle public (#174) --- NEWS.md | 4 ++++ Project.toml | 2 +- docs/src/api/primitives.md | 1 + src/public.jl | 3 ++- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 0e77847f6..9ce5999d9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # Changelog +## v1.1.3 + +- `sort_triangle` is now public. + ## v1.1.2 - Clarified type stability of `triangulate` in docstring, and notes about field access and public API. See [#171](https://github.com/JuliaGeometry/DelaunayTriangulation.jl/pull/171). diff --git a/Project.toml b/Project.toml index ea18c5df1..4c995c8f7 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "DelaunayTriangulation" uuid = "927a84f5-c5f4-47a5-9785-b46e178433df" authors = ["Daniel VandenHeuvel "] -version = "1.1.2" +version = "1.1.3" [deps] AdaptivePredicates = "35492f91-a3bd-45ad-95db-fcad7dcfedb7" diff --git a/docs/src/api/primitives.md b/docs/src/api/primitives.md index 434b35592..9389a1000 100644 --- a/docs/src/api/primitives.md +++ b/docs/src/api/primitives.md @@ -47,6 +47,7 @@ getk triangle_vertices triangle_type triangle_edges +sort_triangle compare_triangles add_to_triangles! delete_from_triangles! diff --git a/src/public.jl b/src/public.jl index 3843a754b..b8b366910 100644 --- a/src/public.jl +++ b/src/public.jl @@ -181,7 +181,8 @@ parallelorder_predicate, angle_is_acute_predicate, sameside_predicate, - meet_predicate + meet_predicate, + sort_triangle """, ), )