Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Major changes

## v3.0 planned
- Remove plotting code (`plot_in_out`, `plot_triangulateio`, `tricircumcenter!`)
- Remove deprecated `triunsuitable`
## v3.0.0 June 23, 2025
Cleanup release: moved plot methods for triangulateio structsto [GridVisualize.jl](https://wias-pdelib.github.io/GridVisualize.jl/stable/api/#Plotting-TriangulateIO)
No more Makie and Pyplot weakdeps and compat entries.

- Breaking:
- Removed plotting code (`plot_in_out`, `plot_triangulateio`, `tricircumcenter!`)
- Removed deprecated `triunsuitable` in favor of `triunsuitable!`.

## v2.5.1 June 22, 2025
- Bump Makie compat to include 0.25
Expand Down
17 changes: 1 addition & 16 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,13 @@
name = "Triangulate"
uuid = "f7e6ffb2-c36d-4f8f-a77e-16e897189344"
authors = ["Juergen Fuhrmann <[email protected]>"]
version = "2.5.1"
version = "3.0.0"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Triangle_jll = "5639c1d2-226c-5e70-8d55-b3095415a16a"

[weakdeps]
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"

[compat]
CairoMakie = "0.10, 0.11, 0.12, 0.13, 0.14, 0.15"
DocStringExtensions = "0.8, 0.9"
GLMakie = "0.8,0.9, 0.10, 0.11, 0.12, 0.13"
Printf = "1.6"
PyPlot = "2"
Triangle_jll = "1.6.2"
julia = "1.6"

[extras]
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
5 changes: 1 addition & 4 deletions src/Triangulate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,13 @@ using Triangle_jll

include("ctriangulateio.jl")
include("triangulateio.jl")
include("plot.jl")

export triangulate
export triunsuitable!, triunsuitable
export triunsuitable!
export TriangulateIO
export numberofpoints
export numberofsegments
export numberoftriangles
export TriangulateError
export plot_triangulateio, plot_in_out
export isplots, ispyplot

end
Loading
Loading