Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dtolnay/rustversion
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.20
Choose a base ref
...
head repository: dtolnay/rustversion
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.21
Choose a head ref
  • 5 commits
  • 4 files changed
  • 1 contributor

Commits on May 17, 2025

  1. Configuration menu
    Copy the full SHA
    17dc0fd View commit details
    Browse the repository at this point in the history

Commits on May 22, 2025

  1. Support -Zfmt-debug=none

    dtolnay committed May 22, 2025
    Configuration menu
    Copy the full SHA
    052138c View commit details
    Browse the repository at this point in the history
  2. Ignore elidable_lifetime_names pedantic clippy lint

        warning: the following explicit lifetimes could be elided: 'a
           --> build/build.rs:109:6
            |
        109 | impl<'a> Display for Render<'a> {
            |      ^^                     ^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
            = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
            = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
        help: elide the lifetimes
            |
        109 - impl<'a> Display for Render<'a> {
        109 + impl Display for Render<'_> {
            |
    dtolnay committed May 22, 2025
    Configuration menu
    Copy the full SHA
    91dd8ef View commit details
    Browse the repository at this point in the history
  3. Merge pull request #61 from dtolnay/debugnone

    Support `-Zfmt-debug=none`
    dtolnay authored May 22, 2025
    Configuration menu
    Copy the full SHA
    8be7057 View commit details
    Browse the repository at this point in the history
  4. Release 1.0.21

    dtolnay committed May 22, 2025
    Configuration menu
    Copy the full SHA
    1f83390 View commit details
    Browse the repository at this point in the history
Loading