Skip to content

Commit

Permalink
Merge pull request #8 from JuliaTrustworthyAI/7-macro-is-not-exported
Browse files Browse the repository at this point in the history
fixed
  • Loading branch information
pat-alt authored Apr 10, 2024
2 parents 8d6f6e9 + c4b80d5 commit 303a831
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TaijaParallel"
uuid = "bf1c2c22-5e42-4e78-8b6b-92e6c673eeb0"
authors = ["Patrick Altmeyer <[email protected]>"]
version = "1.0.1"
version = "1.0.2"

[deps]
CounterfactualExplanations = "2f13d31b-18db-44c1-bc43-ebaf2cff0be0"
Expand Down
3 changes: 2 additions & 1 deletion src/TaijaParallel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ using Reexport
using TaijaBase

@reexport import TaijaBase: parallelize, AbstractParallelizer
export ThreadsParallelizer, IsParallel, NotParallel, ProcessStyle, parallelizable
export ThreadsParallelizer,
IsParallel, NotParallel, ProcessStyle, parallelizable, @with_parallelizer

"The `ThreadsParallelizer` type is used to parallelize the evaluation of a function using `Threads.@threads`."
struct ThreadsParallelizer <: AbstractParallelizer end
Expand Down

2 comments on commit 303a831

@pat-alt
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 register

Release notes:

  • @with_parallelizer macro is now exported

@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/104615

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.0.2 -m "<description of version>" 303a83166498351902cf487cba1598755e21c216
git push origin v1.0.2

Please sign in to comment.