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

Commits on Aug 13, 2022

  1. Resolve renamed_and_removed_lints warning on blacklisted_name

        warning: lint `clippy::blacklisted_name` has been renamed to `clippy::disallowed_names`
         --> tests/test.rs:2:5
          |
        2 |     clippy::blacklisted_name,
          |     ^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::disallowed_names`
          |
          = note: `#[warn(renamed_and_removed_lints)]` on by default
    dtolnay committed Aug 13, 2022
    Configuration menu
    Copy the full SHA
    c6e5ed5 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2022

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

Commits on Aug 23, 2022

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

Commits on Aug 31, 2022

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

Commits on Sep 2, 2022

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

Commits on Sep 14, 2022

  1. Remove default package.readme metadata from Cargo.toml

    Since cargo 1.46.0, README.md is recognized by default.
    dtolnay committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    30daa57 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2022

  1. Raise minimum tested toolchain to rust 1.56

    Required by the transitive dev-dependency on once_cell.
    
        error: failed to parse manifest at github.com-1ecc6299db9ec823/once_cell-1.15.0/Cargo.toml
    
        Caused by:
          feature `edition2021` is required
    
          The package requires the Cargo feature called `edition2021`, but that feature is not stabilized in this version of Cargo (1.55.0 (32da73ab1 2021-08-23)).
          Consider trying a newer version of Cargo (this may require the nightly release).
          See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#edition-2021 for more information about the status of this feature.
    dtolnay committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    1e2b198 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2022

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

Commits on Oct 18, 2022

  1. MIT copyright line

    Delete the first paragraph of LICENSE-MIT (an inaccurate
    pseudo-copyright line), leaving only the text of the MIT license.
    
    Nothing about the license of quote has changed, only our understanding
    of how to correctly communicate that license has changed.
    
    This mirrors an equivalent chagne applied in the rust-lang/rust
    repository years ago.
    dtolnay committed Oct 18, 2022
    Configuration menu
    Copy the full SHA
    b2e30cc View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2022

  1. Fix renamed let_underscore_drop lint

        warning: lint `clippy::let_underscore_drop` has been renamed to `let_underscore_drop`
         --> tests/test.rs:3:5
          |
        3 |     clippy::let_underscore_drop,
          |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `let_underscore_drop`
          |
          = note: `#[warn(renamed_and_removed_lints)]` on by default
    dtolnay committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    6f42f3c View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2022

  1. Time out workflows after 45 minutes

    GitHub's default timeout is 6 hours. Recently some of my GitHub Actions
    jobs have started randomly stalling for that long, which is inconvenient
    because it ties up a chunk of my runner quota. It apepars to be very
    rare for a job to recover after stalling. It's better to time out
    quicker and retry on a different runner.
    dtolnay committed Nov 26, 2022
    Configuration menu
    Copy the full SHA
    2922a8e View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2022

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

Commits on Dec 16, 2022

  1. Update build status badge

    dtolnay committed Dec 16, 2022
    Configuration menu
    Copy the full SHA
    ead304a View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2022

  1. Release 1.0.22

    dtolnay committed Dec 17, 2022
    Configuration menu
    Copy the full SHA
    2386c5a View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2022

  1. Opt out -Zrustdoc-scrape-examples on docs.rs

    I'd like a chance to audit all the code that rustdoc is inserting into
    the docs. Currently I am skeptical that showing quote's internal usages
    of APIs is a net benefit to the public documentation. I am also
    skeptical that quite so many examples are needed, and that they should
    be featured so prominently in comparison to handwritten docs. Lastly I
    wish there were a way to turn this behavior off on a more granular
    basis.
    dtolnay committed Dec 18, 2022
    Configuration menu
    Copy the full SHA
    b0337d0 View commit details
    Browse the repository at this point in the history
  2. Release 1.0.23

    dtolnay committed Dec 18, 2022
    Configuration menu
    Copy the full SHA
    550af67 View commit details
    Browse the repository at this point in the history
Loading