You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
This release is a major overhaul of the user interface.
Changes:
The new lower compat bound for Julia is 1.10. This implies that support for the old LTS 1.6 has been dropped.
The old main API function chunks is deprecated, and the new chunks function behaves differently.
The new chunks has been introduced that returns an iterator that provides chunks of elements rather than chunks of indices of a given input collection. To avoid copies, it is based on view.
A new function index_chunks is introduced that returns the indices of the chunks.
For performance reasons, the split keyword option now requires a Split instead of a Symbol. Concretely, :batch should be replaced by Consecutive() and :scatter should be replaced by RoundRobin().
The keyword argument minchunksize has been renamed to minsize.
getchunk isn't public API anymore (and has, internally, been renamed to getchunkindices). If you really need a replacement, consider using index_chunks(...)[i] instead.
The old legacy API that relied on positional rather than keyword arguments has been dropped.
832f9fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
Release notes:
This release is a major overhaul of the user interface.
Changes:
chunks
is deprecated, and the newchunks
function behaves differently.chunks
has been introduced that returns an iterator that provides chunks of elements rather than chunks of indices of a given input collection. To avoid copies, it is based onview
.index_chunks
is introduced that returns the indices of the chunks.split
keyword option now requires aSplit
instead of aSymbol
. Concretely,:batch
should be replaced byConsecutive()
and:scatter
should be replaced byRoundRobin()
.minchunksize
has been renamed tominsize
.getchunk
isn't public API anymore (and has, internally, been renamed togetchunkindices
). If you really need a replacement, consider usingindex_chunks(...)[i]
instead.832f9fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request updated: JuliaRegistries/General/115941
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: