diff --git a/Cargo.lock b/Cargo.lock index aed442dd504..fc1dd194877 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -310,7 +310,7 @@ dependencies = [ [[package]] name = "cargo-smart-release" -version = "0.10.2" +version = "0.11.0" dependencies = [ "anyhow", "bitflags", @@ -1035,7 +1035,7 @@ dependencies = [ [[package]] name = "git-attributes" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bstr", "compact_str", @@ -1080,7 +1080,7 @@ dependencies = [ [[package]] name = "git-config" -version = "0.5.0" +version = "0.6.0" dependencies = [ "bstr", "criterion", @@ -1115,7 +1115,7 @@ dependencies = [ [[package]] name = "git-credentials" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bstr", "git-sec", @@ -1148,7 +1148,7 @@ dependencies = [ [[package]] name = "git-discover" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bstr", "defer", @@ -1282,7 +1282,7 @@ dependencies = [ [[package]] name = "git-odb" -version = "0.30.0" +version = "0.31.0" dependencies = [ "arc-swap", "filetime", @@ -1303,7 +1303,7 @@ dependencies = [ [[package]] name = "git-pack" -version = "0.20.0" +version = "0.21.0" dependencies = [ "bstr", "bytesize", @@ -1351,7 +1351,7 @@ dependencies = [ [[package]] name = "git-path" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bstr", "tempfile", @@ -1364,7 +1364,7 @@ version = "0.0.0" [[package]] name = "git-protocol" -version = "0.17.0" +version = "0.18.0" dependencies = [ "async-std", "async-trait", @@ -1400,7 +1400,7 @@ version = "0.0.0" [[package]] name = "git-ref" -version = "0.14.0" +version = "0.15.0" dependencies = [ "git-actor", "git-discover", @@ -1422,7 +1422,7 @@ dependencies = [ [[package]] name = "git-repository" -version = "0.19.0" +version = "0.20.0" dependencies = [ "anyhow", "byte-unit", @@ -1480,7 +1480,7 @@ dependencies = [ [[package]] name = "git-sec" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bitflags", "dirs", @@ -1540,7 +1540,7 @@ version = "0.0.0" [[package]] name = "git-transport" -version = "0.18.0" +version = "0.19.0" dependencies = [ "async-std", "async-trait", @@ -1582,7 +1582,7 @@ version = "0.0.0" [[package]] name = "git-url" -version = "0.6.0" +version = "0.7.0" dependencies = [ "bstr", "git-features", @@ -1604,7 +1604,7 @@ dependencies = [ [[package]] name = "git-worktree" -version = "0.3.0" +version = "0.4.0" dependencies = [ "bstr", "document-features", diff --git a/Cargo.toml b/Cargo.toml index 93755555760..167ad114203 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,9 +84,9 @@ anyhow = "1.0.42" gitoxide-core = { version = "^0.15.0", path = "gitoxide-core" } git-features = { version = "^0.21.1", path = "git-features" } -git-repository = { version = "^0.19.0", path = "git-repository", default-features = false } +git-repository = { version = "^0.20.0", path = "git-repository", default-features = false } -git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.18.0", path = "git-transport" } +git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.19.0", path = "git-transport" } clap = { version = "3.2.5", features = ["derive", "cargo"] } prodash = { version = "19.0.0", optional = true, default-features = false } diff --git a/cargo-smart-release/Cargo.toml b/cargo-smart-release/Cargo.toml index 996e95b99cb..0dba85551f8 100644 --- a/cargo-smart-release/Cargo.toml +++ b/cargo-smart-release/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-smart-release" -version = "0.10.2" +version = "0.11.0" authors = ["Sebastian Thiel "] repository = "https://github.com/Byron/gitoxide" description = "Cargo subcommand for fearlessly releasing crates in workspaces." @@ -26,7 +26,7 @@ test = false cache-efficiency-debug = ["git-repository/cache-efficiency-debug"] [dependencies] -git-repository = { version = "^0.19", path = "../git-repository", features = ["unstable"] } +git-repository = { version = "^0.20.0", path = "../git-repository", features = ["unstable"] } anyhow = "1.0.42" clap = { version = "3.2.5", features = ["derive", "cargo"] } env_logger = { version = "0.9.0", default-features = false, features = ["humantime", "termcolor", "atty"] } diff --git a/experiments/diffing/Cargo.toml b/experiments/diffing/Cargo.toml index 933538cdc6b..477ff1704ae 100644 --- a/experiments/diffing/Cargo.toml +++ b/experiments/diffing/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] anyhow = "1" -git-repository = { version = "^0.19", path = "../../git-repository", features = ["unstable"] } +git-repository = { version = "^0.20.0", path = "../../git-repository", features = ["unstable"] } git-features-for-config = { package = "git-features", version = "^0.21.0", path = "../../git-features", features = ["cache-efficiency-debug"] } git2 = "0.14" rayon = "1.5.0" diff --git a/experiments/object-access/Cargo.toml b/experiments/object-access/Cargo.toml index ce40109a097..0e125255574 100644 --- a/experiments/object-access/Cargo.toml +++ b/experiments/object-access/Cargo.toml @@ -11,7 +11,7 @@ publish = false [dependencies] anyhow = "1" -git-repository = { path = "../../git-repository", version = "^0.19", features = ["unstable"] } +git-repository = { path = "../../git-repository", version = "^0.20.0", features = ["unstable"] } git2 = "0.14" rayon = "1.5.0" parking_lot = { version = "0.12.0", default-features = false } diff --git a/experiments/traversal/Cargo.toml b/experiments/traversal/Cargo.toml index 17d326d679e..95832cc0f51 100644 --- a/experiments/traversal/Cargo.toml +++ b/experiments/traversal/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] anyhow = "1" -git-repository = { version = "^0.19", path = "../../git-repository", features = ["unstable"] } +git-repository = { version = "^0.20.0", path = "../../git-repository", features = ["unstable"] } git2 = "0.14" rayon = "1.5.0" dashmap = "5.1.0" diff --git a/git-attributes/Cargo.toml b/git-attributes/Cargo.toml index 7c488c46758..f3ead4df284 100644 --- a/git-attributes/Cargo.toml +++ b/git-attributes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-attributes" -version = "0.2.0" +version = "0.3.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A WIP crate of the gitoxide project dealing .gitattributes files" @@ -19,7 +19,7 @@ serde1 = ["serde", "bstr/serde1", "git-glob/serde1", "compact_str/serde"] [dependencies] git-features = { version = "^0.21.1", path = "../git-features" } -git-path = { version = "^0.2.0", path = "../git-path" } +git-path = { version = "^0.3.0", path = "../git-path" } git-quote = { version = "^0.2.0", path = "../git-quote" } git-glob = { version = "^0.3.0", path = "../git-glob" } diff --git a/git-config/Cargo.toml b/git-config/Cargo.toml index 982402630c1..b6a0a09994e 100644 --- a/git-config/Cargo.toml +++ b/git-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-config" -version = "0.5.0" +version = "0.6.0" repository = "https://github.com/Byron/gitoxide" description = "A git-config file parser and editor from the gitoxide project" license = "MIT OR Apache-2.0" @@ -15,9 +15,9 @@ include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] [dependencies] git-features = { version = "^0.21.1", path = "../git-features"} -git-path = { version = "^0.2.0", path = "../git-path" } -git-sec = { version = "^0.2.0", path = "../git-sec" } -git-ref = { version = "^0.14.0", path = "../git-ref" } +git-path = { version = "^0.3.0", path = "../git-path" } +git-sec = { version = "^0.3.0", path = "../git-sec" } +git-ref = { version = "^0.15.0", path = "../git-ref" } git-glob = { version = "0.3.0", path = "../git-glob" } dirs = "4" diff --git a/git-credentials/Cargo.toml b/git-credentials/Cargo.toml index 10497352712..6e6282cf5d1 100644 --- a/git-credentials/Cargo.toml +++ b/git-credentials/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-credentials" -version = "0.2.0" +version = "0.3.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A WIP crate of the gitoxide project to interact with git credentials helpers" @@ -17,7 +17,7 @@ serde1 = ["serde", "bstr/serde1", "git-sec/serde1"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -git-sec = { version = "^0.2.0", path = "../git-sec" } +git-sec = { version = "^0.3.0", path = "../git-sec" } quick-error = "2.0.0" serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] } bstr = { version = "0.2.13", default-features = false, features = ["std"]} diff --git a/git-discover/Cargo.toml b/git-discover/Cargo.toml index f2b2cfe03a5..a4a85aa2f4f 100644 --- a/git-discover/Cargo.toml +++ b/git-discover/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-discover" -version = "0.2.0" +version = "0.3.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "Discover git repositories and check if a directory is a git repository" @@ -14,9 +14,9 @@ doctest = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -git-sec = { version = "^0.2.0", path = "../git-sec", features = ["thiserror"] } -git-path = { version = "^0.2.0", path = "../git-path" } -git-ref = { version = "^0.14.0", path = "../git-ref" } +git-sec = { version = "^0.3.0", path = "../git-sec", features = ["thiserror"] } +git-path = { version = "^0.3.0", path = "../git-path" } +git-ref = { version = "^0.15.0", path = "../git-ref" } git-hash = { version = "^0.9.5", path = "../git-hash" } bstr = { version = "0.2.13", default-features = false, features = ["std", "unicode"] } diff --git a/git-odb/Cargo.toml b/git-odb/Cargo.toml index 43943daf346..dbb5488bcd1 100644 --- a/git-odb/Cargo.toml +++ b/git-odb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-odb" -version = "0.30.0" +version = "0.31.0" repository = "https://github.com/Byron/gitoxide" authors = ["Sebastian Thiel "] license = "MIT/Apache-2.0" @@ -31,11 +31,11 @@ all-features = true [dependencies] git-features = { version = "^0.21.1", path = "../git-features", features = ["rustsha1", "walkdir", "zlib", "crc32" ] } -git-path = { version = "^0.2.0", path = "../git-path" } +git-path = { version = "^0.3.0", path = "../git-path" } git-hash = { version = "^0.9.5", path = "../git-hash" } git-quote = { version = "^0.2.0", path = "../git-quote" } git-object = { version = "^0.19.0", path = "../git-object" } -git-pack = { version = "^0.20.0", path = "../git-pack" } +git-pack = { version = "^0.21.0", path = "../git-pack" } serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]} tempfile = "3.1.0" diff --git a/git-pack/Cargo.toml b/git-pack/Cargo.toml index 9ae7c26c8b5..7f7b7a9caea 100644 --- a/git-pack/Cargo.toml +++ b/git-pack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-pack" -version = "0.20.0" +version = "0.21.0" repository = "https://github.com/Byron/gitoxide" authors = ["Sebastian Thiel "] license = "MIT/Apache-2.0" @@ -39,7 +39,7 @@ required-features = ["internal-testing-to-avoid-being-run-by-cargo-test-all"] [dependencies] git-features = { version = "^0.21.1", path = "../git-features", features = ["crc32", "rustsha1", "progress", "zlib"] } git-hash = { version = "^0.9.5", path = "../git-hash" } -git-path = { version = "^0.2.0", path = "../git-path" } +git-path = { version = "^0.3.0", path = "../git-path" } git-chunk = { version = "^0.3.0", path = "../git-chunk" } git-object = { version = "^0.19.0", path = "../git-object" } git-traverse = { version = "^0.15.0", path = "../git-traverse" } diff --git a/git-path/CHANGELOG.md b/git-path/CHANGELOG.md index c77e7b7a73d..20b808ba443 100644 --- a/git-path/CHANGELOG.md +++ b/git-path/CHANGELOG.md @@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.3.0 (2022-06-19) + +### Bug Fixes (BREAKING) + + - Remove `git-config` test utilities from `git-path`. + +### Commit Statistics + + + + - 3 commits contributed to the release. + - 6 days passed between releases. + - 1 commit where understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' where seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - Fix git-paths tests; improve error handling. ([`9c00504`](https://github.com/Byron/gitoxide/commit/9c0050451f634a54e610c86199b5d7d393378878)) + - docs for git-path ([`a520092`](https://github.com/Byron/gitoxide/commit/a52009244c9b1059ebb3d5dd472c25f9c49691f3)) + - Remove `git-config` test utilities from `git-path`. ([`c9933c0`](https://github.com/Byron/gitoxide/commit/c9933c0b0f51d21dc8244b2acc33d7dc8a33f6ce)) +
+ ## 0.2.0 (2022-06-13) ### New Features (BREAKING) @@ -16,7 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - 5 commits contributed to the release over the course of 20 calendar days. + - 6 commits contributed to the release over the course of 20 calendar days. - 20 days passed between releases. - 1 commit where understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' where seen in commit messages @@ -28,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Release git-date v0.0.1, git-hash v0.9.5, git-features v0.21.1, git-actor v0.10.1, git-path v0.2.0, git-attributes v0.2.0, git-ref v0.14.0, git-sec v0.2.0, git-config v0.5.0, git-credentials v0.2.0, git-discover v0.2.0, git-pack v0.20.0, git-odb v0.30.0, git-url v0.6.0, git-transport v0.18.0, git-protocol v0.17.0, git-revision v0.2.1, git-worktree v0.3.0, git-repository v0.19.0, safety bump 13 crates ([`a417177`](https://github.com/Byron/gitoxide/commit/a41717712578f590f04a33d27adaa63171f25267)) - update changelogs prior to release ([`bb424f5`](https://github.com/Byron/gitoxide/commit/bb424f51068b8a8e762696890a55ab48900ab980)) - make fmt ([`c665aef`](https://github.com/Byron/gitoxide/commit/c665aef4270c5ee54da89ee015cc0affd6337608)) - Merge branch 'main' into davidkna-envopen ([`bc0abc6`](https://github.com/Byron/gitoxide/commit/bc0abc643d3329f885f250b6880560dec861150f)) diff --git a/git-path/Cargo.toml b/git-path/Cargo.toml index 3b3e0ac4e87..7ea12582b5d 100644 --- a/git-path/Cargo.toml +++ b/git-path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-path" -version = "0.2.0" +version = "0.3.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A WIP crate of the gitoxide project dealing paths and their conversions" diff --git a/git-protocol/Cargo.toml b/git-protocol/Cargo.toml index 689d70a826c..43ab77525f4 100644 --- a/git-protocol/Cargo.toml +++ b/git-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-protocol" -version = "0.17.0" +version = "0.18.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A WIP crate of the gitoxide project for implementing git protocols" @@ -40,9 +40,9 @@ required-features = ["async-client"] [dependencies] git-features = { version = "^0.21.1", path = "../git-features", features = ["progress"] } -git-transport = { version = "^0.18.0", path = "../git-transport" } +git-transport = { version = "^0.19.0", path = "../git-transport" } git-hash = { version = "^0.9.5", path = "../git-hash" } -git-credentials = { version = "^0.2.0", path = "../git-credentials" } +git-credentials = { version = "^0.3.0", path = "../git-credentials" } quick-error = "2.0.0" serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]} diff --git a/git-ref/Cargo.toml b/git-ref/Cargo.toml index af2d070501c..728a5c05223 100644 --- a/git-ref/Cargo.toml +++ b/git-ref/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-ref" -version = "0.14.0" +version = "0.15.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A crate to handle git references" @@ -26,7 +26,7 @@ required-features = ["internal-testing-git-features-parallel"] [dependencies] git-features = { version = "^0.21.1", path = "../git-features", features = ["walkdir"]} -git-path = { version = "^0.2.0", path = "../git-path" } +git-path = { version = "^0.3.0", path = "../git-path" } git-hash = { version = "^0.9.5", path = "../git-hash" } git-object = { version = "^0.19.0", path = "../git-object" } git-validate = { version = "^0.5.4", path = "../git-validate" } diff --git a/git-repository/Cargo.toml b/git-repository/Cargo.toml index 8434ff8bf8f..4adf5161d0c 100644 --- a/git-repository/Cargo.toml +++ b/git-repository/Cargo.toml @@ -3,7 +3,7 @@ name = "git-repository" repository = "https://github.com/Byron/gitoxide" description = "Abstractions for git repositories" license = "MIT/Apache-2.0" -version = "0.19.0" +version = "0.20.0" authors = ["Sebastian Thiel "] edition = "2018" include = ["src/**/*", "CHANGELOG.md"] @@ -56,36 +56,36 @@ cache-efficiency-debug = ["git-features/cache-efficiency-debug"] [dependencies] -git-ref = { version = "^0.14.0", path = "../git-ref" } -git-discover = { version = "^0.2.0", path = "../git-discover" } +git-ref = { version = "^0.15.0", path = "../git-ref" } +git-discover = { version = "^0.3.0", path = "../git-discover" } git-tempfile = { version = "^2.0.0", path = "../git-tempfile" } git-lock = { version = "^2.0.0", path = "../git-lock" } git-validate = { version = "^0.5.4", path = "../git-validate" } -git-sec = { version = "^0.2.0", path = "../git-sec", features = ["thiserror"] } +git-sec = { version = "^0.3.0", path = "../git-sec", features = ["thiserror"] } -git-config = { version = "^0.5.0", path = "../git-config" } -git-odb = { version = "^0.30.0", path = "../git-odb" } +git-config = { version = "^0.6.0", path = "../git-config" } +git-odb = { version = "^0.31.0", path = "../git-odb" } git-hash = { version = "^0.9.5", path = "../git-hash" } git-object = { version = "^0.19.0", path = "../git-object" } git-actor = { version = "^0.10.1", path = "../git-actor" } -git-pack = { version = "^0.20.0", path = "../git-pack", features = ["object-cache-dynamic"] } +git-pack = { version = "^0.21.0", path = "../git-pack", features = ["object-cache-dynamic"] } git-revision = { version = "^0.2.1", path = "../git-revision" } -git-path = { version = "^0.2.0", path = "../git-path" } -git-url = { version = "^0.6.0", path = "../git-url", optional = true } +git-path = { version = "^0.3.0", path = "../git-path" } +git-url = { version = "^0.7.0", path = "../git-url", optional = true } git-traverse = { version = "^0.15.0", path = "../git-traverse" } -git-protocol = { version = "^0.17.0", path = "../git-protocol", optional = true } -git-transport = { version = "^0.18.0", path = "../git-transport", optional = true } +git-protocol = { version = "^0.18.0", path = "../git-protocol", optional = true } +git-transport = { version = "^0.19.0", path = "../git-transport", optional = true } git-diff = { version = "^0.16.0", path = "../git-diff", optional = true } git-mailmap = { version = "^0.2.0", path = "../git-mailmap", optional = true } git-features = { version = "^0.21.1", path = "../git-features", features = ["progress"] } # unstable only -git-attributes = { version = "^0.2.0", path = "../git-attributes", optional = true } +git-attributes = { version = "^0.3.0", path = "../git-attributes", optional = true } git-glob = { version = "^0.3.0", path = "../git-glob", optional = true } -git-credentials = { version = "^0.2.0", path = "../git-credentials", optional = true } +git-credentials = { version = "^0.3.0", path = "../git-credentials", optional = true } git-index = { version = "^0.3.0", path = "../git-index", optional = true } -git-worktree = { version = "^0.3.0", path = "../git-worktree" } +git-worktree = { version = "^0.4.0", path = "../git-worktree" } signal-hook = { version = "0.3.9", default-features = false } thiserror = "1.0.26" diff --git a/git-sec/Cargo.toml b/git-sec/Cargo.toml index 806a3315042..5c27e43b7b0 100644 --- a/git-sec/Cargo.toml +++ b/git-sec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-sec" -version = "0.2.0" +version = "0.3.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A WIP crate of the gitoxide project providing a shared trust model" @@ -26,7 +26,7 @@ thiserror = { version = "1.0.26", optional = true } libc = "0.2.123" [target.'cfg(windows)'.dependencies] -git-path = { version = "^0.2.0", path = "../git-path" } +git-path = { version = "^0.3.0", path = "../git-path" } dirs = "4" windows = { version = "0.37.0", features = [ "alloc", "Win32_Foundation", diff --git a/git-transport/Cargo.toml b/git-transport/Cargo.toml index debc0e7720b..084313fd2cb 100644 --- a/git-transport/Cargo.toml +++ b/git-transport/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-transport" -version = "0.18.0" +version = "0.19.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A WIP crate of the gitoxide project dedicated to implementing the git transport layer" @@ -51,8 +51,8 @@ required-features = ["async-client"] [dependencies] git-features = { version = "^0.21.1", path = "../git-features" } -git-url = { version = "^0.6.0", path = "../git-url" } -git-sec = { version = "^0.2.0", path = "../git-sec" } +git-url = { version = "^0.7.0", path = "../git-url" } +git-sec = { version = "^0.3.0", path = "../git-sec" } git-packetline = { version = "^0.12.5", path = "../git-packetline" } serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"]} diff --git a/git-url/Cargo.toml b/git-url/Cargo.toml index 8db595fc171..37d452f2425 100644 --- a/git-url/Cargo.toml +++ b/git-url/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-url" -version = "0.6.0" +version = "0.7.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A WIP crate of the gitoxide project implementing parsing and serialization of git-url" @@ -20,7 +20,7 @@ serde1 = ["serde", "bstr/serde1"] [dependencies] serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"]} git-features = { version = "^0.21.1", path = "../git-features" } -git-path = { version = "^0.2.0", path = "../git-path" } +git-path = { version = "^0.3.0", path = "../git-path" } quick-error = "2.0.0" url = "2.1.1" bstr = { version = "0.2.13", default-features = false, features = ["std"] } diff --git a/git-worktree/Cargo.toml b/git-worktree/Cargo.toml index 611181d4d50..84dc5f543d3 100644 --- a/git-worktree/Cargo.toml +++ b/git-worktree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-worktree" -version = "0.3.0" +version = "0.4.0" repository = "https://github.com/Byron/gitoxide" license = "MIT/Apache-2.0" description = "A WIP crate of the gitoxide project dedicated implementing everything around working trees and git excludes" @@ -34,8 +34,8 @@ git-index = { version = "^0.3.0", path = "../git-index" } git-hash = { version = "^0.9.5", path = "../git-hash" } git-object = { version = "^0.19.0", path = "../git-object" } git-glob = { version = "^0.3.0", path = "../git-glob" } -git-path = { version = "^0.2.0", path = "../git-path" } -git-attributes = { version = "^0.2.0", path = "../git-attributes" } +git-path = { version = "^0.3.0", path = "../git-path" } +git-attributes = { version = "^0.3.0", path = "../git-attributes" } git-features = { version = "^0.21.1", path = "../git-features" } serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]} diff --git a/gitoxide-core/Cargo.toml b/gitoxide-core/Cargo.toml index 6f5abea2d67..2a9d754c968 100644 --- a/gitoxide-core/Cargo.toml +++ b/gitoxide-core/Cargo.toml @@ -38,10 +38,10 @@ local-time-support = ["git-repository/local-time-support"] [dependencies] # deselect everything else (like "performance") as this should be controllable by the parent application. -git-repository = { version = "^0.19.0", path = "../git-repository", default-features = false, features = ["local", "unstable"]} # TODO: eventually 'unstable' shouldn't be needed anymore -git-pack-for-configuration-only = { package = "git-pack", version = "^0.20.0", path = "../git-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] } +git-repository = { version = "^0.20.0", path = "../git-repository", default-features = false, features = ["local", "unstable"]} # TODO: eventually 'unstable' shouldn't be needed anymore +git-pack-for-configuration-only = { package = "git-pack", version = "^0.21.0", path = "../git-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] } git-commitgraph = { version = "^0.8.0", path = "../git-commitgraph" } -git-config = { version = "^0.5.0", path = "../git-config" } +git-config = { version = "^0.6.0", path = "../git-config" } git-features = { version = "^0.21.1", path = "../git-features" } serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] } anyhow = "1.0.42" @@ -59,7 +59,7 @@ futures-io = { version = "0.3.16", optional = true } blocking = { version = "1.0.2", optional = true } # for 'organize' functionality -git-url = { version = "^0.6.0", path = "../git-url", optional = true } +git-url = { version = "^0.7.0", path = "../git-url", optional = true } jwalk = { version = "0.6.0", optional = true } rayon = { version = "1.5.0", optional = true } diff --git a/tests/tools/Cargo.toml b/tests/tools/Cargo.toml index fc183f215d1..2e1600f441b 100644 --- a/tests/tools/Cargo.toml +++ b/tests/tools/Cargo.toml @@ -15,9 +15,9 @@ path = "src/main.rs" [dependencies] git-hash = { version = "^0.9.5", path = "../../git-hash" } git-lock = { version = "^2.0.0", path = "../../git-lock" } -git-discover = { version = "^0.2.0", path = "../../git-discover" } -git-attributes = { version = "^0.2.0", path = "../../git-attributes" } -git-worktree = { version = "^0.3.0", path = "../../git-worktree" } +git-discover = { version = "^0.3.0", path = "../../git-discover" } +git-attributes = { version = "^0.3.0", path = "../../git-attributes" } +git-worktree = { version = "^0.4.0", path = "../../git-worktree" } nom = { version = "7", default-features = false, features = ["std"]} bstr = "0.2.15"