From 6ab89af5723c64dece04c5fafea71af6df111e8f Mon Sep 17 00:00:00 2001 From: Carlo Lucibello Date: Thu, 28 Mar 2024 10:39:23 +0100 Subject: [PATCH 1/3] relax BangBang compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 441ea539..f84ec991 100644 --- a/Project.toml +++ b/Project.toml @@ -11,7 +11,7 @@ TaskLocalValues = "ed4db957-447d-4319-bfb6-7fa9ae7ecf34" [compat] Aqua = "0.8" -BangBang = "0.4" +BangBang = "0.3.40, 0.4" ChunkSplitters = "2.4" StableTasks = "0.1.5" TaskLocalValues = "0.1" From c87cec9750a9d1d2dfb470b5d0fccab388a450da Mon Sep 17 00:00:00 2001 From: Carlo Lucibello Date: Thu, 28 Mar 2024 10:41:04 +0100 Subject: [PATCH 2/3] bump patch version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index f84ec991..abf1da8c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "OhMyThreads" uuid = "67456a42-1dca-4109-a031-0a68de7e3ad5" authors = ["Carsten Bauer ", "Mason Protter "] -version = "0.5.0" +version = "0.5.1" [deps] BangBang = "198e06fe-97b7-11e9-32a5-e1d131e6ad66" From 666c4abbc0d3b0c60e8b32b43a763a45b3b2625a Mon Sep 17 00:00:00 2001 From: Mason Protter Date: Thu, 28 Mar 2024 13:13:58 +0100 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9048ae52..4a0c5db3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ Version 0.5.1 - ![Feature][badge-feature] Within a parallel `@tasks` block one can now mark a region with `@one_by_one`. This region will be run by one task at a time ("critical region"). - ![Feature][badge-feature] Within a `@tasks` block one can now mark a region as with `@only_one`. This region will be run by a single parallel task only (other tasks will skip over it). - ![Experimental][badge-experimental] Added tentative support for `@barrier` in `@tasks` blocks. See `?OhMyThreads.Tools.@barrier` for more information. Note that this feature is experimental and **not** part of the public API (i.e. doesn't fall under SemVer). +- ![Info][badge-info] Compat bounds for [BangBang.jl](https://github.com/JuliaFolds2/BangBang.jl) have been relaxed to include v0.3.40 Version 0.5.0 -------------