Skip to content

Commit ee0ee84

Browse files
committed
adjust to renaming of git-revision to gix-revision
1 parent 3308a45 commit ee0ee84

File tree

80 files changed

+596
-596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+596
-596
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
- name: Install Rust
164164
run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
165165
- uses: Swatinem/rust-cache@v2
166-
- run: set +x; for name in gix-actor gix-attributes git-bitmap git-chunk gix-command git-commitgraph gix-date gix-glob gix-hash gix-hashtable git-mailmap gix-object gix-packetline gix-path gix-pathspec gix-quote git-refspec git-revision gix-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
166+
- run: set +x; for name in gix-actor gix-attributes git-bitmap git-chunk gix-command git-commitgraph gix-date gix-glob gix-hash gix-hashtable git-mailmap gix-object gix-packetline gix-path gix-pathspec gix-quote git-refspec gix-revision gix-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
167167
name: crates without feature toggles
168168
- 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
169169
name: features of gix-features

Cargo.lock

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ members = [
149149
"git-index",
150150
"git-bitmap",
151151
"gix-worktree",
152-
"git-revision",
152+
"gix-revision",
153153
"gix-packetline",
154154
"git-mailmap",
155155
"git-note",
@@ -181,7 +181,7 @@ members = [
181181
"cargo-smart-release",
182182
"tests/tools",
183183

184-
"git-revision/tests",
184+
"gix-revision/tests",
185185
"git-diff/tests",
186186
"git-pack/tests",
187187
"git-index/tests",

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ check: ## Build all code in suitable configurations
7575
cd git-index && cargo check --features serde1
7676
cd gix-credentials && cargo check --features serde1
7777
cd gix-sec && cargo check --features serde1
78-
cd git-revision && cargo check --features serde1
78+
cd gix-revision && cargo check --features serde1
7979
cd gix-attributes && cargo check --features serde1
8080
cd gix-glob && cargo check --features serde1
8181
cd git-mailmap && cargo check --features serde1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ is usable to some extent.
7878
* [gix-attributes](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-attributes)
7979
* [gix-pathspec](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-pathspec)
8080
* [git-index](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-index)
81-
* [git-revision](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-revision)
81+
* [gix-revision](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-revision)
8282
* [gix-command](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-command)
8383
* [gix-prompt](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-prompt)
8484
* [git-refspec](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-refspec)

0 commit comments

Comments
 (0)