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.96
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.98
Choose a head ref
  • 11 commits
  • 11 files changed
  • 1 contributor

Commits on Jan 10, 2025

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

Commits on Jan 11, 2025

  1. Resolve needless_continue pedantic clippy lint

        warning: this `continue` expression is redundant
            --> src/expr.rs:2246:21
             |
        2246 |                     continue;
             |                     ^^^^^^^^
             |
             = help: consider dropping the `continue` expression
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_continue
             = note: `-W clippy::needless-continue` implied by `-W clippy::pedantic`
             = help: to override `-W clippy::pedantic` add `#[allow(clippy::needless_continue)]`
    dtolnay committed Jan 11, 2025
    Configuration menu
    Copy the full SHA
    42601b9 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2025

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

Commits on Jan 30, 2025

  1. Resolve sliced_string_as_bytes clippy lint

        warning: calling `as_bytes` after slicing a string
            --> src/lit.rs:1540:21
             |
        1540 |         let mut v = s[2..].as_bytes();
             |                     ^^^^^^^^^^^^^^^^^ help: try: `&s.as_bytes()[2..]`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#sliced_string_as_bytes
             = note: `-W clippy::sliced-string-as-bytes` implied by `-W clippy::all`
             = help: to override `-W clippy::all` add `#[allow(clippy::sliced_string_as_bytes)]`
    dtolnay committed Jan 30, 2025
    Configuration menu
    Copy the full SHA
    6ebd966 View commit details
    Browse the repository at this point in the history
  2. Resolve unnecessary_semicolon pedantic clippy lint

        warning: unnecessary semicolon
           --> benches/rust.rs:103:14
            |
        103 |             };
            |              ^ help: remove
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_semicolon
            = note: `-W clippy::unnecessary-semicolon` implied by `-W clippy::pedantic`
            = help: to override `-W clippy::pedantic` add `#[allow(clippy::unnecessary_semicolon)]`
    dtolnay committed Jan 30, 2025
    Configuration menu
    Copy the full SHA
    e0e40cf View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2025

  1. Configuration menu
    Copy the full SHA
    f0ee7e9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1846 from dtolnay/surroundcfg

    Fix missing doc cfg on <$Delimiter>::surround
    dtolnay authored Feb 1, 2025
    Configuration menu
    Copy the full SHA
    bf672a9 View commit details
    Browse the repository at this point in the history
  3. Release 2.0.97

    dtolnay committed Feb 1, 2025
    Configuration menu
    Copy the full SHA
    d15bdea View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4307f64 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2025

  1. Merge pull request #1847 from dtolnay/lifetimes

    Allow lifetimes in function pointer return values
    dtolnay authored Feb 2, 2025
    Configuration menu
    Copy the full SHA
    f0c57ee View commit details
    Browse the repository at this point in the history
  2. Release 2.0.98

    dtolnay committed Feb 2, 2025
    Configuration menu
    Copy the full SHA
    71f3808 View commit details
    Browse the repository at this point in the history
Loading