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: bitflags/bitflags
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.5.0
Choose a base ref
...
head repository: bitflags/bitflags
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.6.0
Choose a head ref
  • 20 commits
  • 13 files changed
  • 6 contributors

Commits on Feb 1, 2024

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

Commits on Mar 20, 2024

  1. Sync CHANGELOG.md with github release notes

    Created by pulling all the release notes from Github as below, then
    manually checking for missing info in CHANGELOG.md.
    
      for TAG in $(git tag -l); do
        curl -L "https://api.github.com/repos/bitflags/bitflags/releases/tags/$TAG" \
          | jq -r '.body' \
          > release-notes/$TAG;
      done
    dextero committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    49fd8af View commit details
    Browse the repository at this point in the history
  2. Merge pull request #402 from dextero/sync-changelog-with-release-notes

    Sync CHANGELOG.md with github release notes
    KodrAus authored Mar 20, 2024
    Configuration menu
    Copy the full SHA
    9c92890 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a1b2612 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Merge pull request #403 from KodrAus/chore/fix-msgs

    Update error messages and zerocopy
    KodrAus authored Mar 21, 2024
    Configuration menu
    Copy the full SHA
    aa84edf View commit details
    Browse the repository at this point in the history
  2. Add check-minimal action to GH workflows

    Runs cargo check on nightly requesting a build with minimum versions of
    dependencies declared as supported.
    dextero committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    33a1f68 View commit details
    Browse the repository at this point in the history
  3. Bump required dependency versions

    To minimal versions required to build most features (all other than core
    and rustc-dep-of-std) with --all-targets.
    
    Minimal required versions discovered by manual binsearch between
    minimum compatible version declared currently and the newest one
    available, and rerunning
    
      cargo check --all \
        --features serde,arbitrary,bytemuck,std,example_generated \
        --all-targets -Z minimal-versions
    
    to verify if it builds.
    dextero committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    4b535a7 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2024

  1. Merge pull request #404 from dextero/minimum-versions

    Bump minimum declared versions of dependencies
    KodrAus authored Mar 24, 2024
    Configuration menu
    Copy the full SHA
    393be7b View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2024

  1. chore(deps): bump serde_derive and bytemuck versions

    This ensures that this version can be built with the specified minimal versions
    joshka committed Mar 31, 2024
    Configuration menu
    Copy the full SHA
    86593d0 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2024

  1. Merge pull request #405 from joshka/main

    chore(deps): bump serde_derive and bytemuck versions
    KodrAus authored May 26, 2024
    Configuration menu
    Copy the full SHA
    151851a View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

  1. Merge pull request #396 from bitflags/ci/scorecard

    add OSFF Scorecard workflow
    KodrAus authored Jun 16, 2024
    Configuration menu
    Copy the full SHA
    4020868 View commit details
    Browse the repository at this point in the history
  2. update to scorecard 2.3.1

    KodrAus authored Jun 16, 2024
    Configuration menu
    Copy the full SHA
    650025d View commit details
    Browse the repository at this point in the history
  3. update stderr messages

    KodrAus committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    70a8247 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #408 from KodrAus/chore/ci-fix

    Update stderr messages
    KodrAus authored Jun 16, 2024
    Configuration menu
    Copy the full SHA
    9f633fe View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2024

  1. Fix typo

    waywardmonkeys committed Jun 23, 2024
    Configuration menu
    Copy the full SHA
    980c588 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #410 from waywardmonkeys/fix-typo

    Fix typo
    dtolnay authored Jun 23, 2024
    Configuration menu
    Copy the full SHA
    9c4b93c View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Configuration menu
    Copy the full SHA
    dc8f03a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #411 from KodrAus/fix/impl-mode-attributes

    Allow specifying outer attributes in impl mode
    KodrAus authored Jun 24, 2024
    Configuration menu
    Copy the full SHA
    e1ac235 View commit details
    Browse the repository at this point in the history
  3. prepare for 2.6.0 release

    KodrAus committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    a187b29 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #412 from KodrAus/cargo/2.6.0

    Prepare for 2.6.0 release
    KodrAus authored Jun 24, 2024
    Configuration menu
    Copy the full SHA
    1351369 View commit details
    Browse the repository at this point in the history
Loading