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: servo/rust-smallvec
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0-alpha.7
Choose a base ref
...
head repository: servo/rust-smallvec
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.0-alpha.8
Choose a head ref
  • 5 commits
  • 4 files changed
  • 4 contributors

Commits on Jul 30, 2024

  1. Update to Edition 2021. (#359)

    smallvec v2's MSRV is already 1.57.0, which is after the relase of Edition 2021 in 1.56.0.
    
    Apply fix for Cargo.toml dev_dependencies warning given by cargo fix --edition.
    zachs18 authored Jul 30, 2024
    Configuration menu
    Copy the full SHA
    72ff74d View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Micro optimize extend (#362)

    Improve code generation by only advancing the iterator in 2 locations
    arthurprs authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    f6ec5b2 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2024

  1. Implement spare_capacity_mut (#364)

    Mirrors the implementation from `Vec::spare_capacity_mut`.
    
    This is useful to write directly into the buffer after `SmallVec::with_capacity`,
    removing the overhead of the `SmallVec` model entirely when doing so.
    DaniPopes authored Dec 10, 2024
    Configuration menu
    Copy the full SHA
    9eacf68 View commit details
    Browse the repository at this point in the history
  2. Fix clippy warnings

    mbrubeck committed Dec 10, 2024
    Configuration menu
    Copy the full SHA
    18bc257 View commit details
    Browse the repository at this point in the history
  3. Version 2.0.0-alpha.8

    mbrubeck committed Dec 10, 2024
    Configuration menu
    Copy the full SHA
    21422eb View commit details
    Browse the repository at this point in the history
Loading