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/thiserror
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.49
Choose a base ref
...
head repository: dtolnay/thiserror
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.50
Choose a head ref
  • 9 commits
  • 24 files changed
  • 2 contributors

Commits on Sep 27, 2023

  1. Ignore needless_raw_string_hashes clippy lint

        warning: unnecessary hashes around raw string literal
          --> build.rs:10:21
           |
        10 |   const PROBE: &str = r#"
           |  _____________________^
        11 | |     #![feature(error_generic_member_access)]
        12 | |
        13 | |     use std::error::{Error, Request};
        ...  |
        35 | |     }
        36 | | "#;
           | |__^
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
           = note: `-W clippy::needless-raw-string-hashes` implied by `-W clippy::all`
           = help: to override `-W clippy::all` add `#[allow(clippy::needless_raw_string_hashes)]`
        help: remove all the hashes around the literal
           |
        10 ~ const PROBE: &str = r"
        11 |     #![feature(error_generic_member_access)]
         ...
        35 |     }
        36 ~ ";
           |
    dtolnay committed Sep 27, 2023
    Configuration menu
    Copy the full SHA
    f4eac7e View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Configuration menu
    Copy the full SHA
    a49f7c6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #258 from de-vri-es/as-dyn-error-span

    Change span of `as_dyn_error()` to point compile error at attribute.
    dtolnay authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    4850c6f View commit details
    Browse the repository at this point in the history
  3. Touch up PR 258

    dtolnay committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    c9fe739 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7cec716 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ff0a0a5 View commit details
    Browse the repository at this point in the history
  6. Format ui tests with rustfmt

    `rustfmt tests/ui/*.rs`
    dtolnay committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    ebebf77 View commit details
    Browse the repository at this point in the history
  7. Ignore module_name_repetitions pedantic clippy lint

        warning: item name ends with its containing module's name
         --> impl/src/span.rs:4:11
          |
        4 | pub trait MemberSpan {
          |           ^^^^^^^^^^
          |
          = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions
          = note: `-W clippy::module-name-repetitions` implied by `-W clippy::pedantic`
          = help: to override `-W clippy::pedantic` add `#[allow(clippy::module_name_repetitions)]`
    dtolnay committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    4088d16 View commit details
    Browse the repository at this point in the history
  8. Release 1.0.50

    dtolnay committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    a7d220d View commit details
    Browse the repository at this point in the history
Loading