Skip to content
This repository was archived by the owner on Mar 25, 2024. 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/serde-yaml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.9.24
Choose a base ref
...
head repository: dtolnay/serde-yaml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.9.25
Choose a head ref
  • 5 commits
  • 5 files changed
  • 1 contributor

Commits on Jul 18, 2023

  1. Resolve incorrect_partial_ord_impl_on_ord_type clippy lint

        warning: incorrect implementation of `partial_cmp` on an `Ord` type
           --> src/value/tagged.rs:150:1
            |
        150 | /  impl PartialOrd for Tag {
        151 | |      fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
            | | _____________________________________________________________-
        152 | ||         Some(Ord::cmp(self, other))
        153 | ||     }
            | ||_____- help: change this to: `{ Some(self.cmp(other)) }`
        154 | |  }
            | |__^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incorrect_partial_ord_impl_on_ord_type
            = note: `-W clippy::incorrect-partial-ord-impl-on-ord-type` implied by `-W clippy::all`
    dtolnay committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    c1b1eac View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

  1. Configuration menu
    Copy the full SHA
    cd1fd90 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a38768f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #383 from dtolnay/leadingzero

    Use quoted style for strings consisting of digits with leading zero
    dtolnay authored Jul 20, 2023
    Configuration menu
    Copy the full SHA
    fda96c7 View commit details
    Browse the repository at this point in the history
  4. Release 0.9.25

    dtolnay committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    f26dac4 View commit details
    Browse the repository at this point in the history
Loading