From bea00ee91c286aa6179ac09ab8a739a279bb9c19 Mon Sep 17 00:00:00 2001 From: Carsten Bauer Date: Tue, 6 Feb 2024 18:13:08 +0100 Subject: [PATCH] Create CHANGELOG.md --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..b7366c46 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,36 @@ +OhMyThreads.jl Changelog +========================= + +Version 0.3.0 (not released yet) +------------- + +- ![BREAKING][badge-breaking] We don't (re-)export `chunks` anymore. Use `OhMyThreads.chunks` instead. +- ![Feature][badge-feature] We now provide `OhMyThreads.TaskLocalValue` (from [TaskLocalValue.jl](https://github.com/vchuravy/TaskLocalValues.jl)) as a nice solution for task-local values. See the corresponding page in the documentation ([#25][gh-issue-25]). +- ![Enhancement][badge-enhancement] Added a few missing `@views`. +- ![Enhancement][badge-enhancement] Added three examples to the docs: monte carlo, julia set, and trapazoidal integration. +- ![Enhancement][badge-enhancement] Improved all docstrings of the exported API functions. Keyword options are now only shown in the extended help (e.g. `??tmap`) ([#27][gh-issue-27]). +- ![Enhancement][badge-enhancement] Added a translation page that hopefully helps with the Base.Threads → OhMyThreads.jl transition ([#24][gh-issue-24]). + +Version 0.2.1 +------------- + +- ![Enhancement][badge-enhancement] Basic documentation. +- ![Enhancement][badge-enhancement] Making `ChunkSplitters` available internally. + +Version 0.2.0 +------------- + +- Initial version. + +[badge-breaking]: https://img.shields.io/badge/BREAKING-red.svg +[badge-deprecation]: https://img.shields.io/badge/Deprecation-orange.svg +[badge-feature]: https://img.shields.io/badge/Feature-green.svg +[badge-enhancement]: https://img.shields.io/badge/Enhancement-blue.svg +[badge-bugfix]: https://img.shields.io/badge/Bugfix-purple.svg +[badge-info]: https://img.shields.io/badge/Info-gray.svg + +[gh-issue-27]: https://github.com/JuliaFolds2/OhMyThreads.jl/issues/27 +[gh-issue-24]: https://github.com/JuliaFolds2/OhMyThreads.jl/issues/24 +[gh-issue-25]: https://github.com/JuliaFolds2/OhMyThreads.jl/issues/25 + +[gh-pr-5]: https://github.com/JuliaFolds2/OhMyThreads.jl/pull/5