8000 Comparing 0.1.13...master · dtolnay/mashup · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.
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/mashup
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.13
Choose a base ref
...
head repository: dtolnay/mashup
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 14 commits
  • 8 files changed
  • 1 contributor

Commits on Aug 29, 2021

  1. Ignore doc_markdown pedantic Clippy lint

        error: you should put `concat_idents` between ticks in the documentation
           --> src/lib.rs:190:22
            |
        190 | /// A working stable concat_idents.
            |                      ^^^^^^^^^^^^^
            |
            = note: `-D clippy::doc-markdown` implied by `-D clippy::pedantic`
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
    dtolnay committed Aug 29, 2021
    Configuration menu
    Copy the full SHA
    4206c14 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f75fe44 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2022

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

Commits on Dec 19, 2022

  1. Ignore needless_borrowed_reference clippy lint

        error: dereferencing a tuple pattern where every element takes a reference
           --> impl/src/lib.rs:101:42
            |
        101 | ...           Some(&TokenTree::Punct(ref p)) => p.as_char() == '!',
            |                            ^^^^^^^^^^^^^^^^^^^^^^^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
            = note: `-D clippy::needless-borrowed-reference` implied by `-D clippy::all`
        help: try removing the `&` and `ref` parts
            |
        101 -               Some(&TokenTree::Punct(ref p)) => p.as_char() == '!',
        101 +               Some(TokenTree::Punct(p)) => p.as_char() == '!',
            |
    
    Clippy's recommended code is not compatible with our supported version
    of rustc.
    
        error[E0308]: mismatched types
           --> impl/src/lib.rs:101:42
            |
        101 |               Some(TokenTree::Punct(p)) => p.as_char() == '!',
            |                    ^^^^^^^^^^^^^^^^^^^ expected reference, found enum `proc_macro2::TokenTree`
            |
            = note: expected type `&proc_macro2::TokenTree`
            = note:    found type `proc_macro2::TokenTree`
    dtolnay committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    92008cf View commit details
    Browse the repository at this point in the history
  2. Detect warnings in CI

    dtolnay committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    206b9b9 View commit details
    Browse the repository at this point in the history
  3. Ignore non_camel_case_types lint in test suite

        warning: type `FooBar_Baz` should have a camel case name such as `FoobarBaz`
           --> tests/test.rs:169:9
            |
        169 |         struct "x";
            |         ^^^^^^^^^^^
            |
            = note: #[warn(non_camel_case_types)] on by default
    dtolnay committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    0f8def0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f879e9f View commit details
    Browse the repository at this point in the history
  5. 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 appears 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 Dec 19, 2022
    Configuration menu
    Copy the full SHA
    55bb445 View commit details
    Browse the repository at this point in the history
  6. Update build status badge

    dtolnay committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    5aca9c9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0d5cb87 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    769ffc8 View commit details
    Browse the repository at this point in the history
  9. Add a sponsors link

    dtolnay committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    f48adfc View commit details
    Browse the repository at this point in the history
  10. Remove default package.readme metadata from Cargo.toml

    Since cargo 1.46.0, README.md is recognized by default.
    dtolnay committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    eb96c14 View commit details
    Browse the repository at this point in the history
  11. Release 0.1.14

    dtolnay committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    e62d6fd View commit details
    Browse the repository at this point in the history
Loading
0