Skip to content

Commit

Permalink
make sort_triangle public (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVandH authored Aug 4, 2024
1 parent e93bb68 commit 907368d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DelaunayTriangulation"
uuid = "927a84f5-c5f4-47a5-9785-b46e178433df"
authors = ["Daniel VandenHeuvel <danj.vandenheuvel@gmail.com>"]
version = "1.1.2"
version = "1.1.3"

[deps]
AdaptivePredicates = "35492f91-a3bd-45ad-95db-fcad7dcfedb7"
Expand Down
1 change: 1 addition & 0 deletions docs/src/api/primitives.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ getk
triangle_vertices
triangle_type
triangle_edges
sort_triangle
compare_triangles
add_to_triangles!
delete_from_triangles!
Expand Down
3 changes: 2 additions & 1 deletion src/public.jl
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@
parallelorder_predicate,
angle_is_acute_predicate,
sameside_predicate,
meet_predicate
meet_predicate,
sort_triangle
""",
),
)
Expand Down

2 comments on commit 907368d

@DanielVandH
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/112377

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.3 -m "<description of version>" 907368de9fb62596918431efc41f2abe0fb3be6c
git push origin v1.1.3

Please sign in to comment.