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.27
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.28
Choose a head ref
  • 4 commits
  • 3 files changed
  • 1 contributor

Commits on May 23, 2023

  1. Show error details during miri setup in CI

    Without this, if it fails, the only information printed is useless:
    
        Preparing a sysroot for Miri (target: x86_64-unknown-linux-gnu)...
        fatal error: failed to build sysroot; run `cargo miri setup` to see the error details
    dtolnay committed May 23, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    a312270 View commit details

Commits on May 25, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    0538513 View commit details
  2. Merge pull request #254 from dtolnay/wasm

    Extern crate proc_macro available on all wasm targets
    dtolnay authored May 25, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8c85183 View commit details
  3. Release 1.0.28

    dtolnay committed May 25, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    f559bb7 View commit details
Showing with 4 additions and 6 deletions.
  1. +1 −0 .github/workflows/ci.yml
  2. +1 −1 Cargo.toml
  3. +2 −5 src/lib.rs
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -76,6 +76,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@miri
- run: cargo miri setup
- run: cargo miri test
env:
MIRIFLAGS: -Zmiri-strict-provenance
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quote"
version = "1.0.27" # don't forget to update html_root_url, version in readme for breaking changes
version = "1.0.28" # don't forget to update html_root_url, version in readme for breaking changes
authors = ["David Tolnay <dtolnay@gmail.com>"]
autobenches = false
categories = ["development-tools::procedural-macro-helpers"]
7 changes: 2 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -92,7 +92,7 @@
//! [prettyplease]: https://github.com/dtolnay/prettyplease
// Quote types in rustdoc of other crates get linked to here.
#![doc(html_root_url = "https://docs.rs/quote/1.0.27")]
#![doc(html_root_url = "https://docs.rs/quote/1.0.28")]
#![allow(
clippy::doc_markdown,
clippy::missing_errors_doc,
@@ -102,10 +102,7 @@
clippy::wrong_self_convention,
)]

#[cfg(all(
not(all(target_arch = "wasm32", target_os = "unknown")),
feature = "proc-macro"
))]
#[cfg(feature = "proc-macro")]
extern crate proc_macro;

mod ext;