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: serde-rs/json
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.73
Choose a base ref
...
head repository: serde-rs/json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.74
Choose a head ref
  • 9 commits
  • 25 files changed
  • 2 contributors

Commits on Dec 18, 2021

  1. Ignore return_self_not_must_use clippy lint

        error: missing `#[must_use]` attribute on a method returning `Self`
           --> src/map.rs:595:5
            |
        595 | /     pub fn and_modify<F>(self, f: F) -> Self
        596 | |     where
        597 | |         F: FnOnce(&mut Value),
        598 | |     {
        ...   |
        605 | |         }
        606 | |     }
            | |_____^
            |
            = note: `-D clippy::return-self-not-must-use` implied by `-D clippy::all`
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
    
        error: missing `#[must_use]` attribute on a method returning `Self`
           --> src/value/mod.rs:836:5
            |
        836 | /     pub fn take(&mut self) -> Value {
        837 | |         mem::replace(self, Value::Null)
        838 | |     }
            | |_____^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
    dtolnay committed Dec 18, 2021
    Configuration menu
    Copy the full SHA
    95f67a0 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2021

  1. Unconditionally import from alloc

    Previously serde_json supported versions of rustc older than 1.36 which
    didn't have a stable alloc crate. These days ever toolchain version we
    support has alloc.
    dtolnay committed Dec 31, 2021
    Configuration menu
    Copy the full SHA
    51df12e View commit details
    Browse the repository at this point in the history
  2. Switch to $(,)? in tri macro

    The $(...)? operation is supported since Rust 1.32.
    dtolnay committed Dec 31, 2021
    Configuration menu
    Copy the full SHA
    31198f5 View commit details
    Browse the repository at this point in the history
  3. Eliminate lib module

    dtolnay committed Dec 31, 2021
    Configuration menu
    Copy the full SHA
    5d2cbcd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    18a88da View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2022

  1. Configuration menu
    Copy the full SHA
    012f567 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6de3d39 View commit details
    Browse the repository at this point in the history
  3. Detect warnings in CI

    dtolnay committed Jan 1, 2022
    Configuration menu
    Copy the full SHA
    ef7794f View commit details
    Browse the repository at this point in the history
  4. Release 1.0.74

    dtolnay committed Jan 1, 2022
    Configuration menu
    Copy the full SHA
    58d40de View commit details
    Browse the repository at this point in the history
Loading