Skip to content

Commit

Permalink
adjust to renaming of git-odb to gix-odb
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 16, 2023
1 parent 93047bb commit 476e2ad
Show file tree
Hide file tree
Showing 110 changed files with 996 additions and 996 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ which usually are `Clone` too as they are passed by immutable reference (which i
* **[#287](https://github.com/Byron/gitoxide/issues/287)**
- share and pass cli arguments for pack verification ([`db43e47`](https://github.com/Byron/gitoxide/commit/db43e47fc0a43ef45824ac1c9426c1889bdb13a3))
- Very rough version of repository verification ([`80a4a7a`](https://github.com/Byron/gitoxide/commit/80a4a7add688d16376b9bf2ed7f1c7f655b7c912))
- Adjustments to deal with changes to git-pack/git-odb ([`fcf8fde`](https://github.com/Byron/gitoxide/commit/fcf8fde7272974a70df808bd7ac03e925b7e39a8))
- Adjustments to deal with changes to git-pack/gix-odb ([`fcf8fde`](https://github.com/Byron/gitoxide/commit/fcf8fde7272974a70df808bd7ac03e925b7e39a8))
* **[#289](https://github.com/Byron/gitoxide/issues/289)**
- 'pack' with its own sub-commands ([`fb64af4`](https://github.com/Byron/gitoxide/commit/fb64af4d747960bfa40ec23051ecb03ea8ec5d83))
- 'remote' with its own sub-commands ([`8677f7e`](https://github.com/Byron/gitoxide/commit/8677f7edd516ea54ec652a4a59cb220422036b90))
Expand Down
64 changes: 32 additions & 32 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ members = [
"gix-credentials",
"gix-protocol",
"git-pack",
"git-odb",
"gix-odb",
"gix-tempfile",
"gix-lock",
"gix-attributes",
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ check: ## Build all code in suitable configurations
&& cargo check --no-default-features --features max-performance \
&& cargo check --no-default-features --features max-performance-safe \
&& cargo check --no-default-features
cd git-odb && cargo check --features serde1
cd gix-odb && cargo check --features serde1
cd cargo-smart-release && cargo check --all

unit-tests: ## run all unit tests
cargo test --all
cd gix-features && cargo test && cargo test --all-features
cd gix-ref/tests && cargo test --all-features
cd git-odb && cargo test && cargo test --all-features
cd gix-odb && cargo test && cargo test --all-features
cd gix-object && cargo test && cargo test --features verbose-object-parsing-errors
cd git-pack/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \
&& cargo test --features "internal-testing-gix-features-parallel"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ is usable to some extent.
* [gix-transport](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-transport)
* [gix-protocol](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-protocol)
* [git-pack](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-pack)
* [git-odb](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-odb)
* [gix-odb](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-odb)
* [gix-commitgraph](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-commitgraph)
* [gix-diff](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-diff)
* [gix-traverse](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-traverse)
Expand Down
6 changes: 3 additions & 3 deletions STABILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ The following schematic helps to visualize what follows.
│ │
│ Plumbing Crates─────────────────────┐ │ │
│ │ ┌─────────────┐ ┌─────────────┐ │ │
│ │ │ git-odb │ │ gix-diff │ │ │ │
│ │ │ gix-odb │ │ gix-diff │ │ │ │
│ │ └─────────────┘ └─────────────┘ │ │
│ │ ┌─────────────┐ ┌─────────────┐ │ │ │
│ │ │gix-traverse │ │ git-pack │ │◀ ─ ┼ ─
Expand All @@ -98,8 +98,8 @@ Released plumbing crates are marked with major version number 1 or above, for ex

Breaking changes are collected and may be released no more often than every 4 weeks by incrementing the major version number.

For example, `git-odb` and `gix-ref` both have breaking changes, where `git-odb`'s change is on August 1st and `gix-ref`'s dependent change
is on September 10th. `git-odb`'s breaking change can be released earliest on September 1st, whereas `gix-ref` can be released earliest at October 10th.
For example, `gix-odb` and `gix-ref` both have breaking changes, where `gix-odb`'s change is on August 1st and `gix-ref`'s dependent change
is on September 10th. `gix-odb`'s breaking change can be released earliest on September 1st, whereas `gix-ref` can be released earliest at October 10th.

If there are additional breaking changes without a release, these push back the earliest release date accordingly.

Expand Down

0 comments on commit 476e2ad

Please sign in to comment.