Skip to content

Commit

Permalink
small bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-alt committed Apr 8, 2024
1 parent 1951cfc commit 5d73368
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 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.0"
version = "1.0.1"

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

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

"The `ThreadsParallelizer` type is used to parallelize the evaluation of a function using `Threads.@threads`."
Expand Down
24 changes: 12 additions & 12 deletions test/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ version = "3.24.0"

[[deps.ColorTypes]]
deps = ["FixedPointNumbers", "Random"]
git-tree-sha1 = "eb7f0f8307f71fac7c606984ea5fb2817275d6e4"
git-tree-sha1 = "b10d0b65641d57b8b4d5e234446582de5047050d"
uuid = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
version = "0.11.4"
version = "0.11.5"

[[deps.ColorVectorSpace]]
deps = ["ColorTypes", "FixedPointNumbers", "LinearAlgebra", "Requires", "Statistics", "TensorCore"]
Expand Down Expand Up @@ -541,19 +541,19 @@ weakdeps = ["StaticArrays"]

[[deps.Functors]]
deps = ["LinearAlgebra"]
git-tree-sha1 = "fa8d8fcfa6c38a9a7aa07233e35b3d9a39ec751a"
git-tree-sha1 = "d3e63d9fa13f8eaa2f06f64949e2afc593ff52c2"
uuid = "d9f16b24-f501-4c13-a1f2-28368ffc5196"
version = "0.4.9"
version = "0.4.10"

[[deps.Future]]
deps = ["Random"]
uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820"

[[deps.GPUArrays]]
deps = ["Adapt", "GPUArraysCore", "LLVM", "LinearAlgebra", "Printf", "Random", "Reexport", "Serialization", "Statistics"]
git-tree-sha1 = "47e4686ec18a9620850bad110b79966132f14283"
git-tree-sha1 = "68e8ff56a4a355a85d2784b94614491f8c900cde"
uuid = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7"
version = "10.0.2"
version = "10.1.0"

[[deps.GPUArraysCore]]
deps = ["Adapt"]
Expand Down Expand Up @@ -970,9 +970,9 @@ version = "10.1.4+2"

[[deps.Missings]]
deps = ["DataAPI"]
git-tree-sha1 = "f66bdc5de519e8f8ae43bdc598782d35a25b1272"
git-tree-sha1 = "ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d"
uuid = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28"
version = "1.1.0"
version = "1.2.0"

[[deps.Mmap]]
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
Expand Down Expand Up @@ -1504,15 +1504,15 @@ uuid = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
version = "1.11.1"

[[deps.TaijaBase]]
git-tree-sha1 = "e1d8dc7cda81ebb7651219a70a9f7442fd0411c7"
git-tree-sha1 = "f7b57ab4a5c746d83e8883a38454839d0fab8b6f"
uuid = "10284c91-9f28-4c9a-abbf-ee43576dfff6"
version = "1.0.1"
version = "1.0.2"

[[deps.TaijaData]]
deps = ["CSV", "CounterfactualExplanations", "DataAPI", "DataFrames", "Flux", "LazyArtifacts", "MLDatasets", "MLJBase", "MLJModels", "Random", "StatsBase"]
git-tree-sha1 = "1b27d27767404cc3d55d15158e1701be3ce084b4"
git-tree-sha1 = "ce9997d550aee575e2e1152c35b2a29a09b07c56"
uuid = "9d524318-b4e6-4a65-86d2-b2b72d07866c"
version = "0.1.0"
version = "0.1.1"

[[deps.Tar]]
deps = ["ArgTools", "SHA"]
Expand Down

2 comments on commit 5d73368

@pat-alt
Copy link
Member Author

@pat-alt pat-alt commented on 5d73368 Apr 8, 2024

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

Bump compat for CE

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

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.1 -m "<description of version>" 5d73368eba62a53789cedf61f53aeb17f12b9d71
git push origin v1.0.1

Please sign in to comment.