Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Unexport CookieCutter
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed Nov 1, 2023
1 parent 33dc353 commit 1210b52
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GeoStatsSolvers"
uuid = "50e95529-e670-4fa6-84ad-e28f686cc091"
authors = ["Júlio Hoffimann and contributors"]
version = "0.7.8"
version = "0.7.9"

[deps]
Bessels = "0e736298-9ec6-45e8-9647-e4fc86a2fe38"
Expand Down
3 changes: 0 additions & 3 deletions src/GeoStatsSolvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ export
SGS,
SPDEGS,

# meta solvers
CookieCutter,

# ---------
# LEARNING
# ---------
Expand Down
2 changes: 1 addition & 1 deletion test/simulation/cookie.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@testset "CookieCutter" begin
problem = SimulationProblem(CartesianGrid(100, 100), (:f => Int, :z => Float64), 3)

solver = CookieCutter(DummySimSolver(:f => NamedTuple()), Dict(0 => DummySimSolver(), 1 => DummySimSolver()))
solver = GeoStatsSolvers.CookieCutter(DummySimSolver(:f => NamedTuple()), Dict(0 => DummySimSolver(), 1 => DummySimSolver()))

@test sprint(show, solver) == "CookieCutter"
@test sprint(show, MIME"text/plain"(), solver) ==
Expand Down

2 comments on commit 1210b52

@juliohm
Copy link
Owner Author

@juliohm juliohm commented on 1210b52 Nov 1, 2023

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/94594

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 v0.7.9 -m "<description of version>" 1210b525814d702accb09ce7246ebff8aaaeea84
git push origin v0.7.9

Please sign in to comment.