Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump rayon from 1.0.1 to 1.0.3 #2

Merged
merged 1 commit into from
Mar 21, 2019
Merged

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Mar 18, 2019

Bumps rayon from 1.0.1 to 1.0.3.

Changelog

Sourced from rayon's changelog.

Release rayon 1.0.3

  • ParallelExtend is now implemented for tuple pairs, enabling nested
    unzip() and partition_map() operations. For instance, (A, (B, C))
    items can be unzipped into (Vec<A>, (Vec<B>, Vec<C>)).
    • ParallelExtend<(A, B)> works like unzip().
    • ParallelExtend<Either<A, B>> works like partition_map().
  • ParallelIterator now has a method map_init() which calls an init
    function for a value to pair with items, like map_with() but dynamically
    constructed. That value type has no constraints, not even Send or Sync.
    • The new for_each_init() is a variant of this for simple iteration.
    • The new try_for_each_init() is a variant for fallible iteration.

Contributors

Thanks to all of the contributors for this release!

Release rayon 1.0.2 / rayon-core 1.4.1

  • The ParallelBridge trait with method par_bridge() makes it possible to
    use any Sendable Iterator in parallel!
    • This trait has been added to rayon::prelude.
    • It automatically implements internal synchronization and queueing to
      spread the Items across the thread pool. Iteration order is not
      preserved by this adaptor.
    • "Native" Rayon iterators like par_iter() should still be preferred when
      possible for better efficiency.
  • ParallelString now has additional methods for parity with std string
    iterators: par_char_indices(), par_bytes(), par_encode_utf16(),
    par_matches(), and par_match_indices().
  • ParallelIterator now has fallible methods try_fold(), try_reduce(),
    and try_for_each, plus *_with() variants of each, for automatically
    short-circuiting iterators on None or Err values. These are inspired by
    Iterator::try_fold() and try_for_each() that were stabilized in Rust 1.27.
  • Range<i128> and Range<u128> are now supported with Rust 1.26 and later.
  • Small improvements have been made to the documentation.
  • rayon-core now only depends on rand for testing.
  • Rayon tests now work on stable Rust.

Contributors

Thanks to all of the contributors for this release!

... (truncated)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Mar 18, 2019
@dependabot-preview dependabot-preview bot force-pushed the dependabot/cargo/rayon-1.0.3 branch 2 times, most recently from dc1dbf2 to e6aaa85 Compare March 21, 2019 09:56
Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.0.1 to 1.0.3.
- [Release notes](https://github.com/rayon-rs/rayon/releases)
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md)
- [Commits](rayon-rs/rayon@v1.0.1...v1.0.3)

Signed-off-by: dependabot[bot] <support@dependabot.com>
@coveralls
Copy link

coveralls commented Mar 21, 2019

Pull Request Test Coverage Report for Build 44

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 60.207%

Totals Coverage Status
Change from base Build 41: 0.0%
Covered Lines: 755
Relevant Lines: 1254

💛 - Coveralls

@ThomasdenH ThomasdenH merged commit 518264b into master Mar 21, 2019
@dependabot-preview dependabot-preview bot deleted the dependabot/cargo/rayon-1.0.3 branch March 21, 2019 13:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants