Skip to content

Commit fc86a1e

Browse files
committed
adjust to renaming of git-object to gix-object
1 parent 2320358 commit fc86a1e

File tree

225 files changed

+1169
-1169
lines changed

Some content is hidden

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

225 files changed

+1169
-1169
lines changed

Diff for: .github/workflows/ci.yml

+1-1
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 git-attributes git-bitmap git-chunk git-command git-commitgraph git-date gix-glob gix-hash git-hashtable git-mailmap git-object git-packetline gix-path git-pathspec git-quote git-refspec git-revision git-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
166+
- run: set +x; for name in gix-actor git-attributes git-bitmap git-chunk git-command git-commitgraph git-date gix-glob gix-hash git-hashtable git-mailmap gix-object git-packetline gix-path git-pathspec git-quote git-refspec git-revision git-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

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ A first usable version of `gix` to make using `gitoxide` from your applications
802802
### Performance
803803

804804
* On M1, thanks to [a new release](https://github.com/RustCrypto/hashes/pull/289#event-5035369215), Sha1 is now computed much faster which unlocks a massive performance boost. In my test, verifying/decoding the entire linux kernel pack now happens in 17s, as compared to 37s for canonical `git`.
805-
* `git-object` parsing is a few percent faster thanks a reworked error handling for objects. By default, error collection is disabled entirely making the error case zero-sized. If needed, verbose and stacked errors can be turned on using a feature toggle for applications who expect repositories with malformed objects and need detailed diagnostics.
805+
* `gix-object` parsing is a few percent faster thanks a reworked error handling for objects. By default, error collection is disabled entirely making the error case zero-sized. If needed, verbose and stacked errors can be turned on using a feature toggle for applications who expect repositories with malformed objects and need detailed diagnostics.
806806

807807
### New Features
808808

@@ -887,7 +887,7 @@ could not be installed anymore.
887887
This was eventually fixed with new minor releases across the ecosystem.
888888

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

893893
## v0.5.0 (2020-12-15)

Diff for: Cargo.lock

+39-39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ tabled = { version = "0.10.0", default-features = false }
102102
document-features = { version = "0.2.0", optional = true }
103103

104104
[profile.dev.package]
105-
git-object = { opt-level = 3 }
105+
gix-object = { opt-level = 3 }
106106
git-ref = { opt-level = 3 }
107107
#git-pack = { opt-level = 3 }
108108
gix-hash = { opt-level = 3 }
@@ -141,7 +141,7 @@ members = [
141141
"git-commitgraph",
142142
"git-chunk",
143143
"git-quote",
144-
"git-object",
144+
"gix-object",
145145
"gix-glob",
146146
"git-diff",
147147
"git-date",

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ check: ## Build all code in suitable configurations
7070
cd gitoxide-core && if cargo check --all-features 2>/dev/null; then false; else true; fi
7171
cd gix-hash && cargo check --all-features \
7272
&& cargo check
73-
cd git-object && cargo check --all-features \
73+
cd gix-object && cargo check --all-features \
7474
&& cargo check --features verbose-object-parsing-errors
7575
cd git-index && cargo check --features serde1
7676
cd git-credentials && cargo check --features serde1
@@ -140,7 +140,7 @@ unit-tests: ## run all unit tests
140140
cd gix-features && cargo test && cargo test --all-features
141141
cd git-ref/tests && cargo test --all-features
142142
cd git-odb && cargo test && cargo test --all-features
143-
cd git-object && cargo test && cargo test --features verbose-object-parsing-errors
143+
cd gix-object && cargo test && cargo test --features verbose-object-parsing-errors
144144
cd git-pack/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \
145145
&& cargo test --features "internal-testing-gix-features-parallel"
146146
cd git-index/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ is usable to some extent.
5757
* **usable** _(with rough but complete docs, possibly incomplete functionality)_
5858
* [gix-actor](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-actor)
5959
* [gix-hash](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-hash)
60-
* [git-object](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-object)
60+
* [gix-object](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-object)
6161
* [gix-validate](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-validate)
6262
* [git-url](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-url)
6363
* [git-packetline](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-packetline)

Diff for: STABILITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The following schematic helps to visualize what follows.
6060
║ │ │ git-ref │ │ git-config │ │ ║ │
6161
║ │ └─────────────┘ └─────────────┘ │ ║
6262
║ │ ┌─────────────┐ ┌─────────────┐ │ ║ │
63-
║ │ │ git-object │ │ git-lock │ │ ║
63+
║ │ │ gix-object │ │ git-lock │ │ ║
6464
║ │ └─────────────┘ └─────────────┘ │ ║ │
6565
║ │ ┌───────────────────────────────┐ │ ║
6666
║ │ │ gix-features │ │ ║ │

0 commit comments

Comments
 (0)