-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27faf42
commit bea00ee
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |