From bfd7b01ea43174d790552ab1ced0a545e5755e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 30 Jun 2022 20:33:51 +0200 Subject: [PATCH 01/12] Use en_US for spelling --- docs/src/SUMMARY.md | 2 +- docs/src/testing.md | 8 ++++---- docs/src/{worktree_behaviour.md => worktree_behavior.md} | 0 e2e_tests/test_worktrees.py | 4 ++-- src/repo.rs | 4 ++-- src/worktree.rs | 8 ++++---- 6 files changed, 13 insertions(+), 13 deletions(-) rename docs/src/{worktree_behaviour.md => worktree_behavior.md} (100%) diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md index 1834083..c65b98d 100644 --- a/docs/src/SUMMARY.md +++ b/docs/src/SUMMARY.md @@ -10,7 +10,7 @@ - [Git Worktrees](./worktrees.md) - [Working with Worktrees](./worktree_working.md) - [Worktrees and Remotes](./worktree_remotes.md) - - [Behaviour Details](./worktree_behaviour.md) + - [Behavior Details](./worktree_behavior.md) - [FAQ](./faq.md) - [Developer Documentation](./developing.md) - [Testing](./testing.md) diff --git a/docs/src/testing.md b/docs/src/testing.md index 260a440..c3c2c4c 100644 --- a/docs/src/testing.md +++ b/docs/src/testing.md @@ -16,7 +16,7 @@ functions (like validation of certain input). ## E2E tests The main focus of the testing setup lays on the e2e tests. Each user-facing -behaviour *should* have a corresponding e2e test. These are the most important +behavior *should* have a corresponding e2e test. These are the most important tests, as they test functionality the user will use in the end. The test suite is written in python and uses @@ -28,7 +28,7 @@ Effectively, each tests works like this: * Set up some prerequisites (e.g. different git repositories or configuration files) * Run `grm` -* Check that everything is according to expected behaviour (e.g. that `grm` had +* Check that everything is according to expected behavior (e.g. that `grm` had certain output and exit code, that the target repositories have certain branches, heads and remotes, ...) @@ -39,8 +39,8 @@ configuration exists, what a config value is set to, how the repository looks like, ...) Whenever you write a new test, think about the different circumstances that can -happen. What are the failure modes? What affects the behaviour? Parametrize each -of these behaviours. +happen. What are the failure modes? What affects the behavior? Parametrize each +of these behaviors. ### Optimization diff --git a/docs/src/worktree_behaviour.md b/docs/src/worktree_behavior.md similarity index 100% rename from docs/src/worktree_behaviour.md rename to docs/src/worktree_behavior.md diff --git a/e2e_tests/test_worktrees.py b/e2e_tests/test_worktrees.py index 8e96abf..e5b9b48 100644 --- a/e2e_tests/test_worktrees.py +++ b/e2e_tests/test_worktrees.py @@ -70,7 +70,7 @@ def test_worktree_add( explicit_track_branch_name = f"{default_remote}/{worktree_name}" timestamp = datetime.datetime.now().replace(microsecond=0).isoformat() - # GitPython has some weird behaviour here. It is not possible to use kwargs + # GitPython has some weird behavior here. It is not possible to use kwargs # to set the commit and author date. # # `committer_date=x` (which is documented) does not work, as `git commit` @@ -79,7 +79,7 @@ def test_worktree_add( # `author_date=x` does not work, as it's now called --date in `git commit` # # `date=x` should work, but is refused by GitPython, as it does not know - # about the new behaviour in `git commit` + # about the new behavior in `git commit` # # Fortunately, there are env variables that control those timestamps. os.environ["GIT_COMMITTER_DATE"] = str(timestamp) diff --git a/src/repo.rs b/src/repo.rs index 4589d96..5080d42 100644 --- a/src/repo.rs +++ b/src/repo.rs @@ -233,7 +233,7 @@ impl Worktree { let operation = operation.map_err(convert_libgit2_error)?; // This is required to preserve the commiter of the rebased - // commits, which is the expected behaviour. + // commits, which is the expected behavior. let rebased_commit = repo .0 .find_commit(operation.id()) @@ -357,7 +357,7 @@ impl Worktree { let operation = operation.map_err(convert_libgit2_error)?; // This is required to preserve the commiter of the rebased - // commits, which is the expected behaviour. + // commits, which is the expected behavior. let rebased_commit = repo .0 .find_commit(operation.id()) diff --git a/src/worktree.rs b/src/worktree.rs index abbdf61..b7845cc 100644 --- a/src/worktree.rs +++ b/src/worktree.rs @@ -81,9 +81,9 @@ //! * Instead of just picking `origin/prefix/foobar`, grm will complain because //! it also selected `remote2/foobar`. //! -//! This is just emergent behaviour of the logic above. Fixing it would require +//! This is just emergent behavior of the logic above. Fixing it would require //! additional logic for that edge case. I assume that it's just so rare to get -//! that behaviour that it's acceptable for now. +//! that behavior that it's acceptable for now. //! //! Now we either have a commit, we aborted, or we do not have commit. In the //! last case, as stated above, we check out the "default" branch. @@ -137,7 +137,7 @@ //! `foobar`. As both `remote1/foobar` and `remote2/foobar` as the same, the new //! worktree will use that as the state of the new branch. But as `grm` cannot //! tell which remote branch to track, it will not set up remote tracking. This -//! behaviour may be a bit confusing, but first, there is no good way to resolve +//! behavior may be a bit confusing, but first, there is no good way to resolve //! this, and second, the situation should be really rare (when having multiple //! remotes, you would generally have a `default_remote` configured). //! @@ -463,7 +463,7 @@ impl<'a> Worktree<'a, WithRemoteTrackingBranch<'a>> { // // > failed to make directory '/{repo}/.git-main-working-tree/worktrees/dir/test // - // This is a discrepancy between the behaviour of libgit2 and the + // This is a discrepancy between the behavior of libgit2 and the // git CLI when creating worktrees with slashes: // // The git CLI will create the worktree's configuration directory From d2e01db0ae556f056e89130e8df42ef32fa36708 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Jul 2022 05:55:19 +0000 Subject: [PATCH 02/12] build(deps): bump openssl-src from 111.21.0+1.1.1p to 111.22.0+1.1.1q Bumps [openssl-src](https://github.com/alexcrichton/openssl-src-rs) from 111.21.0+1.1.1p to 111.22.0+1.1.1q. - [Release notes](https://github.com/alexcrichton/openssl-src-rs/releases) - [Commits](https://github.com/alexcrichton/openssl-src-rs/commits) --- updated-dependencies: - dependency-name: openssl-src dependency-type: indirect ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 832e96f..c9b4af4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -602,9 +602,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-src" -version = "111.21.0+1.1.1p" +version = "111.22.0+1.1.1q" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d0a8313729211913936f1b95ca47a5fc7f2e04cd658c115388287f8a8361008" +checksum = "8f31f0d509d1c1ae9cada2f9539ff8f37933831fd5098879e482aa687d659853" dependencies = [ "cc", ] From 58919b2d588ab10a6d24e285af0124796b79898c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 19:49:42 +0200 Subject: [PATCH 03/12] dependencies: Update serde to 1.0.140 --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c9b4af4..7239d7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -875,18 +875,18 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "serde" -version = "1.0.137" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" +checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.137" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" +checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da" dependencies = [ "proc-macro2", "quote", @@ -1154,9 +1154,9 @@ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" [[package]] name = "unicode-ident" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c" +checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" [[package]] name = "unicode-normalization" diff --git a/Cargo.toml b/Cargo.toml index b872be6..b5383ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ path = "src/grm/main.rs" version = "=0.5.9" [dependencies.serde] -version = "=1.0.137" +version = "=1.0.140" features = ["derive"] [dependencies.git2] From a7e2c619844ae2becb3512bdda20a43d78d8a9d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 19:49:43 +0200 Subject: [PATCH 04/12] dependencies: Update clap to 3.2.14 --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7239d7e..6035f6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -80,9 +80,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "3.2.8" +version = "3.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83" +checksum = "54635806b078b7925d6e36810b1755f2a4b5b4d57560432c1ecf60bcbe10602b" dependencies = [ "atty", "bitflags", @@ -367,9 +367,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "heck" @@ -590,9 +590,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225" +checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" [[package]] name = "openssl-probe" @@ -625,9 +625,9 @@ dependencies = [ [[package]] name = "os_str_bytes" -version = "6.1.0" +version = "6.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa" +checksum = "648001efe5d5c0102d8cea768e348da85d90af8ba91f0bea908f157951493cd4" [[package]] name = "parking" diff --git a/Cargo.toml b/Cargo.toml index b5383ad..4e40ceb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ version = "=0.14.4" version = "=2.1.0" [dependencies.clap] -version = "=3.2.8" +version = "=3.2.14" features = ["derive", "cargo"] [dependencies.console] From 00e37996b7047f05d8f52fe1e0fda520a02b41df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 19:49:43 +0200 Subject: [PATCH 05/12] dependencies: Update regex to 1.6.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6035f6e..0fb7005 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -821,9 +821,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.5.6" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1" +checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" dependencies = [ "aho-corasick", "memchr", @@ -832,9 +832,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.26" +version = "0.6.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64" +checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" [[package]] name = "remove_dir_all" diff --git a/Cargo.toml b/Cargo.toml index 4e40ceb..1c66870 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ features = ["derive", "cargo"] version = "=0.15.0" [dependencies.regex] -version = "=1.5.6" +version = "=1.6.0" [dependencies.comfy-table] version = "=6.0.0" From c62562e6f049cd55dd06a3a5b18ad72458352355 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 19:49:43 +0200 Subject: [PATCH 06/12] dependencies: Update serde_yaml to 0.8.26 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0fb7005..ae3e9bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -906,9 +906,9 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.8.24" +version = "0.8.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "707d15895415db6628332b737c838b88c598522e4dc70647e59b72312924aebc" +checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" dependencies = [ "indexmap", "ryu", diff --git a/Cargo.toml b/Cargo.toml index 1c66870..fd19f95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,7 @@ version = "=1.6.0" version = "=6.0.0" [dependencies.serde_yaml] -version = "=0.8.24" +version = "=0.8.26" [dependencies.serde_json] version = "=1.0.82" From e386935bc7c431f56c8d472a8ccf9df1e823c842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 19:49:44 +0200 Subject: [PATCH 07/12] Cargo.lock: Updating bytes v1.1.0 -> v1.2.0 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ae3e9bf..103910b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -47,9 +47,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bytes" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" +checksum = "f0b3de4a0c5e67e16066a0715723abd91edc2f9001d09c46e1dca929351e130e" [[package]] name = "cache-padded" From 7a51ad135f1f1e9df70416325e61932aa001f308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 19:49:46 +0200 Subject: [PATCH 08/12] Cargo.lock: Updating rustversion v1.0.7 -> v1.0.8 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 103910b..57a2a6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -847,9 +847,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0a5f7c728f5d284929a1cccb5bc19884422bfe6ef4d6c409da2c41838983fcf" +checksum = "24c8ad4f0c00e1eb5bc7614d236a7f1300e3dbd76b68cac8e06fb00b015ad8d8" [[package]] name = "ryu" From 98665a323159df8138a40659dca49f0d0a4c488b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 19:49:48 +0200 Subject: [PATCH 09/12] Cargo.lock: Updating openssl-sys v0.9.74 -> v0.9.75 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 57a2a6a..5c60fd2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -611,9 +611,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.74" +version = "0.9.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "835363342df5fba8354c5b453325b110ffd54044e588c539cf2f20a8014e4cb1" +checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f" dependencies = [ "autocfg", "cc", From 95e9fcbffe19d05986cd4a4809d74d84bcd5679f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 19:49:53 +0200 Subject: [PATCH 10/12] Cargo.lock: Updating pin-project v1.0.10 -> v1.0.11 --- Cargo.lock | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5c60fd2..0b2cce0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -677,18 +677,18 @@ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" [[package]] name = "pin-project" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" +checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" +checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74" dependencies = [ "proc-macro2", "quote", @@ -957,9 +957,12 @@ dependencies = [ [[package]] name = "slab" -version = "0.4.6" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32" +checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" +dependencies = [ + "autocfg", +] [[package]] name = "sluice" @@ -1118,9 +1121,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.21" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c" +checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" dependencies = [ "proc-macro2", "quote", @@ -1160,9 +1163,9 @@ checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" [[package]] name = "unicode-normalization" -version = "0.1.20" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81dee68f85cab8cf68dec42158baf3a79a1cdc065a8b103025965d6ccb7f6cbd" +checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" dependencies = [ "tinyvec", ] From bd694c3f7dd8a6a5df434571c398f4d844ca097f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 20:05:22 +0200 Subject: [PATCH 11/12] just: Add pushall target for easier releases --- Justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Justfile b/Justfile index 65719c1..93dd82a 100644 --- a/Justfile +++ b/Justfile @@ -32,6 +32,13 @@ build-release: build-release-static: cargo build --release --target {{static_target}} --features=static-build +pushall: + for r in $(git remote) ; do \ + for branch in develop master ; do \ + git push $r $branch ; \ + done ; \ + done + release-patch: ./release.sh patch From 53c2ee404c187c274473133f41eba51dfb712beb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 20:05:57 +0200 Subject: [PATCH 12/12] Release v0.7.6 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0b2cce0..14bb993 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -332,7 +332,7 @@ dependencies = [ [[package]] name = "git-repo-manager" -version = "0.7.5" +version = "0.7.6" dependencies = [ "clap", "comfy-table", diff --git a/Cargo.toml b/Cargo.toml index fd19f95..9950785 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-repo-manager" -version = "0.7.5" +version = "0.7.6" edition = "2021" authors = [