Skip to content

Add release notes for 1.58 - #92055

Merged
bors merged 9 commits into
rust-lang:masterfrom
tmandry:relnotes-1.58
Jan 9, 2022
Merged

Add release notes for 1.58#92055
bors merged 9 commits into
rust-lang:masterfrom
tmandry:relnotes-1.58

Conversation

@tmandry

@tmandrytmandry commented Dec 18, 2021

Copy link
Copy Markdown
Member

r? @rust-lang/release

@rust-highfive

Copy link
Copy Markdown
Contributor

r? @Mark-Simulacrum

(rust-highfive has picked a reviewer for you, use r? to override)

@rust-highfiverust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Dec 18, 2021
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
@jyn514jyn514 added the T-release Relevant to the release subteam, which will review and decide on the PR/issue. label Dec 18, 2021
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
tmandryand others added 3 commits December 23, 2021 01:25
Co-authored-by: Hans Kratz <hans@appfour.com>
Co-authored-by: Chris Denton <ChrisDenton@users.noreply.github.com>
Co-authored-by: Joshua Nelson <github@jyn.dev>
@tmandry

Copy link
Copy Markdown
MemberAuthor

All comments have been addressed (cc @rust-lang/release again).

I'm officially on vacation starting tomorrow; I may check back here, but feel free to push to my branch / merge without me.

Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
Comment threadRELEASES.md Outdated
tmandryand others added 2 commits January 4, 2022 17:03
Co-authored-by: Josh Triplett <josh@joshtriplett.org>
Co-authored-by: Alexander Ronald Altman <alexanderaltman@me.com>
Comment threadRELEASES.md
@emilyalbini

Copy link
Copy Markdown
Member

@bors r+ rollup

@bors

bors commented Jan 8, 2022

Copy link
Copy Markdown
Collaborator

📌 Commit 81963b1 has been approved by pietroalbini

@borsbors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jan 8, 2022
Comment threadRELEASES.md Outdated
- [`Duration::checked_mul`]
- [`Duration::saturating_mul`]
- [`Duration::checked_div`]
- [`Duration::as_secs_f64`]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think any of the float methods are actually usable in const context: https://github.com/rust-lang/rust/blob/master/library/core/src/time.rs#L686

#89542 only stabilized:

implDuration{pubconstfnnew(secs:u64,nanos:u32) -> Duration;pubconstfnchecked_add(self,rhs:Duration) -> Option<Duration>;pubconstfnsaturating_add(self,rhs:Duration) -> Duration;pubconstfnchecked_sub(self,rhs:Duration) -> Option<Duration>;pubconstfnsaturating_sub(self,rhs:Duration) -> Duration;pubconstfnchecked_mul(self,rhs:u32) -> Option<Duration>;pubconstfnsaturating_mul(self,rhs:u32) -> Duration;pubconstfnchecked_div(self,rhs:u32) -> Option<Duration>;}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jhprattjhprattJan 8, 2022

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirming this comment is correct.

@emilyalbini

Copy link
Copy Markdown
Member

Good catch @marmeladema, I'll fix it in a bit.

@bors r-

@borsbors added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jan 8, 2022
Comment threadRELEASES.md Outdated
@emilyalbini

Copy link
Copy Markdown
Member

@bors r+ rollup

@bors

bors commented Jan 8, 2022

Copy link
Copy Markdown
Collaborator

📌 Commit 0e13d0c has been approved by pietroalbini

@borsbors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Jan 8, 2022
Comment threadRELEASES.md
[`Duration::checked_mul`]: https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.checked_mul
[`Duration::saturating_mul`]: https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.saturating_mul
[`Duration::checked_div`]: https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.checked_div
[`Duration::as_secs_f64`]: https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.as_secs_f64

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we also want to remove those references?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That shouldn't be publicly visible, someone can open a PR later removing that.

bors added a commit to rust-lang-ci/rust that referenced this pull request Jan 9, 2022
…askrgr
Rollup of 8 pull requests
Successful merges:
- rust-lang#92055 (Add release notes for 1.58)
- rust-lang#92490 (Move crate drop-down to search results page)
- rust-lang#92510 (Don't resolve blocks in foreign functions)
- rust-lang#92573 (expand: Refactor InvocationCollector visitor for better code reuse)
- rust-lang#92608 (rustdoc: Introduce a resolver cache for sharing data between early doc link resolution and later passes)
- rust-lang#92657 (Implemented const casts of raw pointers)
- rust-lang#92671 (Make `Atomic*::from_mut` return `&mut Atomic*`)
- rust-lang#92673 (Remove useless collapse toggle on "all items" page)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollup
@bors
bors merged commit 8dc3bf7 into rust-lang:masterJan 9, 2022
@rustbotrustbot added this to the 1.60.0 milestone Jan 9, 2022
Comment threadRELEASES.md
- [`Metadata::is_symlink`]
- [`Path::is_symlink`]
- [`{integer}::saturating_div`]
- [`Option::unwrap_unchecked`]

This comment was marked as outdated.

This comment was marked as outdated.

@tmandry
tmandry deleted the relnotes-1.58 branch January 10, 2022 16:28
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

S-waiting-on-borsStatus: Waiting on bors to run and complete tests. Bors will change the label on completion.T-releaseRelevant to the release subteam, which will review and decide on the PR/issue.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

16 participants

@tmandry@rust-highfive@emilyalbini@bors@joshtriplett@ojeda@CryZe@marmeladema@pthariensflame@jhpratt@hkratz@ChrisDenton@PatchMixolydic@jyn514@Mark-Simulacrum@rustbot