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/semver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.17
Choose a base ref
...
head repository: dtolnay/semver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.20
Choose a head ref
  • 18 commits
  • 9 files changed
  • 2 contributors

Commits on Jun 16, 2023

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

Commits on Jun 27, 2023

  1. Add missed test cases

    JustForMaven committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    2d50313 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

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

Commits on Jul 15, 2023

  1. Configuration menu
    Copy the full SHA
    087f787 View commit details
    Browse the repository at this point in the history
  2. Release 1.0.18

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

Commits on Jul 18, 2023

  1. Resolve incorrect_partial_ord_impl_on_ord_type clippy lint

    This is a false positive but either way is fine.
    
        warning: incorrect implementation of `partial_cmp` on an `Ord` type
          --> src/impls.rs:39:1
           |
        39 | /  impl PartialOrd for Prerelease {
        40 | |      fn partial_cmp(&self, rhs: &Self) -> Option<Ordering> {
           | | ___________________________________________________________-
        41 | ||         Some(Ord::cmp(self, rhs))
        42 | ||     }
           | ||_____- help: change this to: `{ Some(self.cmp(rhs)) }`
        43 | |  }
           | |__^
           |
           = 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`
    
        warning: incorrect implementation of `partial_cmp` on an `Ord` type
          --> src/impls.rs:45:1
           |
        45 | /  impl PartialOrd for BuildMetadata {
        46 | |      fn partial_cmp(&self, rhs: &Self) -> Option<Ordering> {
           | | ___________________________________________________________-
        47 | ||         Some(Ord::cmp(self, rhs))
        48 | ||     }
           | ||_____- help: change this to: `{ Some(self.cmp(rhs)) }`
        49 | |  }
           | |__^
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incorrect_partial_ord_impl_on_ord_type
    dtolnay committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    b074ea0 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2023

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

Commits on Jul 23, 2023

  1. Revert "Temporarily disable -Zrandomize-layout due to rustc ICE"

    Fixed in nightly-2023-07-23.
    
    This reverts commit 2399480.
    dtolnay committed Jul 23, 2023
    Configuration menu
    Copy the full SHA
    fff3f40 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

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

Commits on Sep 22, 2023

  1. Merge pull request #299 from CXWorks/master

    Adding missed unit test cases
    dtolnay authored Sep 22, 2023
    Configuration menu
    Copy the full SHA
    473209f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5e09329 View commit details
    Browse the repository at this point in the history
  3. Touch up PR 299 test cases

    dtolnay committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    2d34e8f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    83abc7f View commit details
    Browse the repository at this point in the history
  5. Release 1.0.19

    dtolnay committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    72a6b5a View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2023

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

Commits on Oct 9, 2023

  1. Configuration menu
    Copy the full SHA
    83aaaf0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #305 from dtolnay/precedence

    Add a method for precedence comparison of Versions
    dtolnay authored Oct 9, 2023
    Configuration menu
    Copy the full SHA
    5feccc0 View commit details
    Browse the repository at this point in the history
  3. Release 1.0.20

    dtolnay committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    55fa2ca View commit details
    Browse the repository at this point in the history
Loading