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.111
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.112
Choose a head ref
  • 9 commits
  • 4 files changed
  • 2 contributors

Commits on Jan 12, 2024

  1. Ignore unconditional_recursion clippy lint due to false positive

    rust-lang/rust-clippy#12133
    
        warning: function cannot return without recursing
           --> src/map.rs:276:5
            |
        276 | /     fn eq(&self, other: &Self) -> bool {
        277 | |         self.map.eq(&other.map)
        278 | |     }
            | |_____^
            |
        note: recursive call site
           --> src/map.rs:277:9
            |
        277 |         self.map.eq(&other.map)
            |         ^^^^^^^^^^^^^^^^^^^^^^^
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unconditional_recursion
            = note: `-W clippy::unconditional-recursion` implied by `-W clippy::all`
            = help: to override `-W clippy::all` add `#[allow(clippy::unconditional_recursion)]`
    dtolnay committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    6d44b9f View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. fix: Correct spelling error

    Fixed a spelling error in the second paragraph of the README file.
    
    - Changed "exponet" to "exponent"
    keienWang committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    2909b0b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1105 from keienWang/master

    fix: Correct spelling error
    dtolnay authored Jan 26, 2024
    Configuration menu
    Copy the full SHA
    e56cc69 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    296fafb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    62ca3e4 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1106 from serde-rs/invalidvalue

    Handle Unexpected::Unit in Error::invalid_value
    dtolnay authored Jan 26, 2024
    Configuration menu
    Copy the full SHA
    107c2d1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    83d7bad View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1107 from serde-rs/unexpectedfloat

    Format f64 in error messages using ryu
    dtolnay authored Jan 26, 2024
    Configuration menu
    Copy the full SHA
    6a6d2bb View commit details
    Browse the repository at this point in the history
  8. Release 1.0.112

    dtolnay committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    7fece96 View commit details
    Browse the repository at this point in the history
Loading