Skip to content

Commit

Permalink
set version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiq committed Sep 25, 2024
1 parent d3a1c53 commit 832f9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ChunkSplitters"
uuid = "ae650224-84b6-46f8-82ea-d812ca08434e"
authors = ["Leandro Martinez <[email protected]>, Carsten Bauer <[email protected]>, and contributors"]
version = "3.0.0-DEV"
version = "3.0.0"

[deps]

Expand Down

2 comments on commit 832f9fd

@lmiq
Copy link
Collaborator Author

@lmiq lmiq commented on 832f9fd Sep 25, 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:

This release is a major overhaul of the user interface.

Changes:

  • BREAKING The new lower compat bound for Julia is 1.10. This implies that support for the old LTS 1.6 has been dropped.
  • BREAKING The old main API function chunks is deprecated, and the new chunks function behaves differently.
  • BREAKING 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.
  • NEW FEATURE A new function index_chunks is introduced that returns the indices of the chunks.
  • BREAKING 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().
  • BREAKING The keyword argument minchunksize has been renamed to minsize.
  • BREAKING 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.
  • BREAKING The old legacy API that relied on positional rather than keyword arguments has been dropped.

@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 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:

git tag -a v3.0.0 -m "<description of version>" 832f9fd253b027fd77611647b16b4b9aa40c9e1b
git push origin v3.0.0

Please sign in to comment.