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.2
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.3
Choose a head ref
  • 20 commits
  • 14 files changed
  • 3 contributors

Commits on Sep 10, 2019

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

Commits on Oct 5, 2019

  1. Remove unneeded lib name from Cargo.toml

    This is left over from the quote-next preview releases.
    dtolnay committed Oct 5, 2019
    Configuration menu
    Copy the full SHA
    ed61aae View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2019

  1. Configuration menu
    Copy the full SHA
    8d155b0 View commit details
    Browse the repository at this point in the history
  2. Upgrade to rustversion 1.0

    dtolnay committed Oct 11, 2019
    Configuration menu
    Copy the full SHA
    8407b03 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2019

  1. Merge pull request #135 from dtolnay/opt

    Recognize ident tokens instead of doing is_ident at runtime
    dtolnay authored Oct 14, 2019
    Configuration menu
    Copy the full SHA
    86f9985 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2019

  1. Raise minimum tested version to rustc 1.36

    Our dev-dependency on trybuild no longer supports 1.31 - 1.35.
    dtolnay committed Oct 29, 2019
    Configuration menu
    Copy the full SHA
    a346d2c View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2019

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

Commits on Nov 25, 2019

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

Commits on Nov 30, 2019

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

Commits on Dec 23, 2019

  1. Avoid panic when using quote! on raw identifiers

    The `quote!` optimization added in 8d155b0
    calls `Ident::new`, which does not handle identifiers containing the `r#` raw
    prefix, panicing if they are passed in.
    
    As `Ident::new_raw` is not stable, raw identifiers are parsed using the existing
    `parse` codepath, with only non-raw identifiers being passed to `Ident::new`.
    This mimics the logic from the `mk_ident` method created for `format_ident!`,
    with some small optimizations due to relaxed requirements.
    
    The previous `is_ident` optimization within `__rt::parse` has also been removed,
    as it is now redundant.
    mystor committed Dec 23, 2019
    Configuration menu
    Copy the full SHA
    8daa9a8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #140 from mystor/quote_raw_id

    Avoid panic when using quote! on raw identifiers
    dtolnay authored Dec 23, 2019
    Configuration menu
    Copy the full SHA
    2a803f7 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2019

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

Commits on Jan 11, 2020

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

Commits on Jan 15, 2020

  1. Adds an unsafe_code linting rule

    This marks the use of unsafe code within the library as an error.
    chills42 committed Jan 15, 2020
    Configuration menu
    Copy the full SHA
    6d65b99 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #141 from chills42/master

    Adds an unsafe_code linting rule
    dtolnay authored Jan 15, 2020
    Configuration menu
    Copy the full SHA
    bf6f5f6 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2020

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

Commits on Feb 25, 2020

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

Commits on Mar 1, 2020

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

Commits on Mar 4, 2020

  1. Make it clearer that __rt isn't public

    This was doc(hidden) and commented "Not public API" but occasionally
    people still decide they should refer to it.
    dtolnay committed Mar 4, 2020
    Configuration menu
    Copy the full SHA
    4154389 View commit details
    Browse the repository at this point in the history
  2. Release 1.0.3

    dtolnay committed Mar 4, 2020
    Configuration menu
    Copy the full SHA
    e030093 View commit details
    Browse the repository at this point in the history
Loading