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.56
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.57
Choose a head ref
  • 10 commits
  • 15 files changed
  • 2 contributors

Commits on Jan 31, 2024

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

Commits on Feb 8, 2024

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

Commits on Feb 9, 2024

  1. Optimize simple literals for Display::fmt

    Compiler is unable to generate as efficient code for `write!(f, "text")` as it does for `f.write_str("text")`.  This PR checks if the `#[error("text")]` uses a simple string literal without the `{` and `}` characters, and without arguments, and uses `write_str` if so.
    nyurik committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    d7e738e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cd79876 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2024

  1. Merge pull request #286 from nyurik/litstr

    Optimize performance for string literals in Display::fmt
    dtolnay authored Feb 11, 2024
    Configuration menu
    Copy the full SHA
    097251d View commit details
    Browse the repository at this point in the history
  2. Touch up PR 286

    dtolnay committed Feb 11, 2024
    Configuration menu
    Copy the full SHA
    d09c418 View commit details
    Browse the repository at this point in the history
  3. Ignore needless_raw_string_hashes pedantic clippy lint in test

        warning: unnecessary hashes around raw string literal
           --> tests/test_display.rs:354:12
            |
        354 |     assert(r#"raw brace left {"#, Error::BraceLeft);
            |            ^^^^^^^^^^^^^^^^^^^^^
            |
            = 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::pedantic`
            = help: to override `-W clippy::pedantic` add `#[allow(clippy::needless_raw_string_hashes)]`
        help: remove all the hashes around the string literal
            |
        354 -     assert(r#"raw brace left {"#, Error::BraceLeft);
        354 +     assert(r"raw brace left {", Error::BraceLeft);
            |
    
        warning: unnecessary hashes around raw string literal
           --> tests/test_display.rs:355:12
            |
        355 |     assert(r#"raw brace left 2 \x7B"#, Error::BraceLeft2);
            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
        help: remove all the hashes around the string literal
            |
        355 -     assert(r#"raw brace left 2 \x7B"#, Error::BraceLeft2);
        355 +     assert(r"raw brace left 2 \x7B", Error::BraceLeft2);
            |
    
        warning: unnecessary hashes around raw string literal
           --> tests/test_display.rs:356:12
            |
        356 |     assert(r#"raw brace right }"#, Error::BraceRight);
            |            ^^^^^^^^^^^^^^^^^^^^^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
        help: remove all the hashes around the string literal
            |
        356 -     assert(r#"raw brace right }"#, Error::BraceRight);
        356 +     assert(r"raw brace right }", Error::BraceRight);
            |
    
        warning: unnecessary hashes around raw string literal
           --> tests/test_display.rs:357:12
            |
        357 |     assert(r#"raw brace right 2 \x7D"#, Error::BraceRight2);
            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
        help: remove all the hashes around the string literal
            |
        357 -     assert(r#"raw brace right 2 \x7D"#, Error::BraceRight2);
        357 +     assert(r"raw brace right 2 \x7D", Error::BraceRight2);
            |
    dtolnay committed Feb 11, 2024
    Configuration menu
    Copy the full SHA
    d43b759 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f790bee View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8a5c4d1 View commit details
    Browse the repository at this point in the history
  6. Release 1.0.57

    dtolnay committed Feb 11, 2024
    Configuration menu
    Copy the full SHA
    1d106b1 View commit details
    Browse the repository at this point in the history
Loading