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/indoc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.5
Choose a base ref
...
head repository: dtolnay/indoc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.0.6
Choose a head ref
  • 11 commits
  • 9 files changed
  • 1 contributor

Commits on Mar 26, 2024

  1. Explicitly install a Rust toolchain for cargo-outdated job

    Debugging a recent cargo-outdated bug, it would have been nice not to
    wonder whether a rustc version change in GitHub's runner image was a
    contributing factor.
    dtolnay committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    d5096b5 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2024

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

Commits on Aug 25, 2024

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

Commits on Oct 6, 2024

  1. Ignore needless_lifetimes clippy lint

        warning: the following explicit lifetimes could be elided: 'a
          --> src/unindent.rs:83:6
           |
        83 | impl<'a, T: ?Sized + Unindent> Unindent for &'a T {
           |      ^^                                      ^^
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
           = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all`
           = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]`
        help: elide the lifetimes
           |
        83 - impl<'a, T: ?Sized + Unindent> Unindent for &'a T {
        83 + impl<T: ?Sized + Unindent> Unindent for &T {
           |
    dtolnay committed Oct 6, 2024
    Configuration menu
    Copy the full SHA
    0d37b42 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Resolve needless_lifetimes clippy lint

        warning: the following explicit lifetimes could be elided: 'a
          --> src/unindent.rs:83:6
           |
        83 | impl<'a, T: ?Sized + Unindent> Unindent for &'a T {
           |      ^^                                      ^^
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
           = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all`
           = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]`
        help: elide the lifetimes
           |
        83 - impl<'a, T: ?Sized + Unindent> Unindent for &'a T {
        83 + impl<T: ?Sized + Unindent> Unindent for &T {
           |
    dtolnay committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    64949e1 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. Work around needless_raw_string_hashes pedantic clippy lint in test

        warning: unnecessary hashes around raw string literal
          --> tests/test_formatdoc.rs:65:29
           |
        65 |       let indoc = formatdoc! {r#"
           |  _____________________________^
        66 | |         {:?}
        67 | |
        68 | |             \\{}
        69 | |         {}"#,
           | |____________^
           |
           = 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
           |
        65 ~     let indoc = formatdoc! {r"
        66 |         {:?}
        67 |
        68 |             \\{}
        69 ~         {}",
           |
    dtolnay committed Oct 19, 2024
    Configuration menu
    Copy the full SHA
    eac624b View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2024

  1. Prevent upload-artifact step from causing CI failure

    This step has been failing way more than reasonable across my various repos.
    
        With the provided path, there will be 1 file uploaded
        Artifact name is valid!
        Root directory input is valid!
        Attempt 1 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 3000 ms...
        Attempt 2 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 6029 ms...
        Attempt 3 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 8270 ms...
        Attempt 4 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 12577 ms...
        Error: Failed to CreateArtifact: Failed to make request after 5 attempts: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact
    dtolnay committed Nov 9, 2024
    Configuration menu
    Copy the full SHA
    8304a10 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2025

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

Commits on Feb 10, 2025

  1. Unset doc-scrape-examples for lib target

    False is the default value since Cargo PR 11499.
    dtolnay committed Feb 10, 2025
    Configuration menu
    Copy the full SHA
    aed1b60 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2025

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

Commits on Mar 3, 2025

  1. Release 2.0.6

    dtolnay committed Mar 3, 2025
    Configuration menu
    Copy the full SHA
    f5934e4 View commit details
    Browse the repository at this point in the history
Loading