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

v0.8: Prepare for the next release #1112

Merged
merged 15 commits into from
May 19, 2024
Merged

v0.8: Prepare for the next release #1112

merged 15 commits into from
May 19, 2024

Conversation

taiki-e
Copy link
Member

@taiki-e taiki-e commented May 19, 2024

(skiplist is in the master branch, so I'll release it in another PR.)

ibraheemdev and others added 12 commits May 20, 2024 01:07
Signed-off-by: InventiveCoder <[email protected]>
```
warning: assigning the result of `Clone::clone()` may be inefficient
    --> crossbeam-skiplist/src/base.rs:1958:17
     |
1958 |                 self.head = next_head.clone();
     |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `self.head.clone_from(&next_head)`
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
     = note: `#[warn(clippy::assigning_clones)]` on by default

warning: assigning the result of `Clone::clone()` may be inefficient
    --> crossbeam-skiplist/src/base.rs:1985:17
     |
1985 |                 self.tail = next_tail.clone();
     |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `self.tail.clone_from(&next_tail)`
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
```
@taiki-e
Copy link
Member Author

taiki-e commented May 19, 2024

= note: cc: error: unrecognized command line option '-fuse-ld=lld'

Oh, I should also backport 0daa6ce.

- crossbeam-utils 0.8.19 -> 0.8.20
- crossbeam-channel 0.5.12 -> 0.5.13
@taiki-e taiki-e merged commit 3f5d51f into v0.8 May 19, 2024
22 checks passed
@taiki-e taiki-e deleted the v0.8-next branch May 19, 2024 18:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

None yet

5 participants