Skip to content

Commit

Permalink
adjust to renaming of git-features to gix-features
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 16, 2023
1 parent 85f7e1a commit e2dd68a
Show file tree
Hide file tree
Showing 193 changed files with 1,083 additions and 1,083 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: set +x; for name in git-actor git-attributes git-bitmap git-chunk git-command git-commitgraph git-date gix-glob git-hash git-hashtable git-mailmap git-object git-packetline gix-path git-pathspec git-quote git-refspec git-revision git-traverse git-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
name: crates without feature toggles
- run: set +x; for feature in progress fs-walkdir-parallel parallel io-pipe crc32 zlib zlib-rust-backend fast-sha1 rustsha1 cache-efficiency-debug; do (cd git-features && cargo build --features $feature --target ${{ matrix.target }}); done
name: features of git-features
- run: set +x; for feature in progress fs-walkdir-parallel parallel io-pipe crc32 zlib zlib-rust-backend fast-sha1 rustsha1 cache-efficiency-debug; do (cd gix-features && cargo build --features $feature --target ${{ matrix.target }}); done
name: features of gix-features
- run: set +x; for name in git-diff git-pack; do (cd $name && cargo build --features wasm --target ${{ matrix.target }}); done
name: crates with 'wasm' feature
- run: cd git-pack && cargo build --all-features --target ${{ matrix.target }}
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ It's also an attempt to trigger CI to build binary releases.

<csr-id-4d2d433e7e98ac42db858688edac06e68ee4d10d/>

Adapt to changes in `git-features` which change `Send + Sync` to `Send + Clone`. This happens to allow non-sync implementations (i.e. thread-local), along with `Sync` ones
Adapt to changes in `gix-features` which change `Send + Sync` to `Send + Clone`. This happens to allow non-sync implementations (i.e. thread-local), along with `Sync` ones
which usually are `Clone` too as they are passed by immutable reference (which is `Clone + Copy`).

### Refactor (BREAKING)
Expand Down Expand Up @@ -887,7 +887,7 @@ could not be installed anymore.
This was eventually fixed with new minor releases across the ecosystem.

Finally, yet another breaking change due to the introduction of the `git-hash`
crate to break a dependency cycle between `git-object` and `git-features` caused
crate to break a dependency cycle between `git-object` and `gix-features` caused
yet another maintenance release.

## v0.5.0 (2020-12-15)
Expand Down
94 changes: 47 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e2dd68a

Please sign in to comment.