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

Commits on Jan 9, 2024

  1. Update test suite to nightly-2024-01-09

        warning: variable does not need to be mutable
          --> tests/common/parse.rs:28:17
           |
        28 |             Err(mut diagnostic) => {
           |                 ----^^^^^^^^^^
           |                 |
           |                 help: remove this `mut`
           |
           = note: `#[warn(unused_mut)]` on by default
    
        warning: variable does not need to be mutable
           --> tests/test_round_trip.rs:109:21
            |
        109 |                 Err(mut diagnostic) => {
            |                     ----^^^^^^^^^^
            |                     |
            |                     help: remove this `mut`
    dtolnay committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    a108467 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2024

  1. Ignore unconditional_recursion clippy lint due to false positive

    rust-lang/rust-clippy#12133
    
        warning: function cannot return without recursing
          --> src/lifetime.rs:90:5
           |
        90 | /     fn eq(&self, other: &Lifetime) -> bool {
        91 | |         self.ident.eq(&other.ident)
        92 | |     }
           | |_____^
           |
        note: recursive call site
          --> src/lifetime.rs:91:9
           |
        91 |         self.ident.eq(&other.ident)
           |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unconditional_recursion
           = note: `-W clippy::unconditional-recursion` implied by `-W clippy::all`
           = help: to override `-W clippy::all` add `#[allow(clippy::unconditional_recursion)]`
    dtolnay committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    fcff12e View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2024

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

Commits on Jan 19, 2024

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

Commits on Jan 23, 2024

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

Commits on Feb 7, 2024

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

Commits on Feb 8, 2024

  1. Ignore dead_code warning in test

        warning: method `try_into_tokens` is never used
          --> tests/macros/mod.rs:78:8
           |
        77 | pub trait TryIntoTokens {
           |           ------------- method in this trait
        78 |     fn try_into_tokens(self) -> Result<proc_macro2::TokenStream>;
           |        ^^^^^^^^^^^^^^^
           |
           = note: `#[warn(dead_code)]` on by default
    dtolnay committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    7dcfac7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dc9cf16 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

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

Commits on Feb 16, 2024

  1. Configuration menu
    Copy the full SHA
    51298d4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1590 from dtolnay/streof

    Improve error location at eof in LitStr::parse
    dtolnay authored Feb 16, 2024
    Configuration menu
    Copy the full SHA
    981359c View commit details
    Browse the repository at this point in the history
  3. Release 2.0.49

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