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.23
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.26
Choose a head ref
  • 16 commits
  • 9 files changed
  • 3 contributors

Commits on May 19, 2024

  1. Configuration menu
    Copy the full SHA
    fc5c98d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #319 from dtolnay/docsrs

    Rely on docs.rs to define --cfg=docsrs by default
    dtolnay authored May 19, 2024
    Configuration menu
    Copy the full SHA
    f96f9d8 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. Resolve doc_lazy_continuation clippy lint

        warning: doc list item missing indentation
           --> src/lib.rs:138:5
            |
        138 | /// right, lexicographically ordered as a 3-tuple of integers. So for example
            |     ^
            |
            = help: if this is supposed to be its own paragraph, add a blank line
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
            = note: `-W clippy::doc-lazy-continuation` implied by `-W clippy::all`
            = help: to override `-W clippy::all` add `#[allow(clippy::doc_lazy_continuation)]`
        help: indent this line
            |
        138 | ///   right, lexicographically ordered as a 3-tuple of integers. So for example
            |     ++
    
        warning: doc list item missing indentation
           --> src/lib.rs:139:5
            |
        139 | /// version `1.5.0` is less than version `1.19.0`, despite the fact that
            |     ^
            |
            = help: if this is supposed to be its own paragraph, add a blank line
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
        help: indent this line
            |
        139 | ///   version `1.5.0` is less than version `1.19.0`, despite the fact that
            |     ++
    
        warning: doc list item missing indentation
           --> src/lib.rs:140:5
            |
        140 | /// "1.19.0" < "1.5.0" as ASCIIbetically compared strings and 1.19 < 1.5
            |     ^
            |
            = help: if this is supposed to be its own paragraph, add a blank line
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
        help: indent this line
            |
        140 | ///   "1.19.0" < "1.5.0" as ASCIIbetically compared strings and 1.19 < 1.5
            |     ++
    
        warning: doc list item missing indentation
           --> src/lib.rs:141:5
            |
        141 | /// as real numbers.
            |     ^
            |
            = help: if this is supposed to be its own paragraph, add a blank line
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
        help: indent this line
            |
        141 | ///   as real numbers.
            |     ++
    dtolnay committed May 23, 2024
    Configuration menu
    Copy the full SHA
    4ea60ae View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2024

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

Commits on Nov 9, 2024

  1. Prevent upload-artifact step from causing CI failure

    This step has been failing way more than reasonable across my various repos.
    
        With the provided path, there will be 1 file uploaded
        Artifact name is valid!
        Root directory input is valid!
        Attempt 1 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 3000 ms...
        Attempt 2 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 6029 ms...
        Attempt 3 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 8270 ms...
        Attempt 4 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 12577 ms...
        Error: Failed to CreateArtifact: Failed to make request after 5 attempts: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact
    dtolnay committed Nov 9, 2024
    Configuration menu
    Copy the full SHA
    89504eb View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2024

  1. faster Ord when Eq

    Eh2406 committed Dec 12, 2024
    Configuration menu
    Copy the full SHA
    75856ef View commit details
    Browse the repository at this point in the history
  2. Merge pull request #328 from Eh2406/master

    Faster Ord when Eq
    dtolnay authored Dec 12, 2024
    Configuration menu
    Copy the full SHA
    238757d View commit details
    Browse the repository at this point in the history
  3. Touch up PR 328

    dtolnay committed Dec 12, 2024
    Configuration menu
    Copy the full SHA
    d03aba3 View commit details
    Browse the repository at this point in the history
  4. Release 1.0.24

    dtolnay committed Dec 12, 2024
    Configuration menu
    Copy the full SHA
    6f4069d View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2025

  1. Configuration menu
    Copy the full SHA
    2bf9708 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1fb55fc View commit details
    Browse the repository at this point in the history
  3. Release 1.0.25

    dtolnay committed Jan 19, 2025
    Configuration menu
    Copy the full SHA
    b1e2848 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2025

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

Commits on Feb 10, 2025

  1. Unset doc-scrape-examples for lib target

    False is the default value since Cargo PR 11499.
    dtolnay committed Feb 10, 2025
    Configuration menu
    Copy the full SHA
    479518d View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2025

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

Commits on Mar 4, 2025

  1. Release 1.0.26

    dtolnay committed Mar 4, 2025
    Configuration menu
    Copy the full SHA
    3e64fdb View commit details
    Browse the repository at this point in the history
Loading