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.48
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
  • 14 commits
  • 26 files changed
  • 3 contributors

Commits on Sep 5, 2023

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

Commits on Sep 7, 2023

  1. Prefer core crate in macro expansions

    Prefer using core crate over std in macro expansions wherever a symbol has
    a stable equivalent in core.  This makes it easier to eventually support
    no_std in the future once error_in_core stabilises.
    mina86 committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    f0f303a View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2023

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

Commits on Sep 26, 2023

  1. Configuration menu
    Copy the full SHA
    79704ad View commit details
    Browse the repository at this point in the history
  2. Release 1.0.49

    dtolnay committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    54465b7 View commit details
    Browse the repository at this point in the history

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