-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation to reflect libgfold removal
This commit contains documentation changes to reflect libgfold's removal. It also contains the following changes: - Change CHANGELOG process to add changes at release time rather than iteratively (because I never remember to do it nor is it required in pull requests) - Update "Cargo.toml" to have alphabetically sorted fields for two sections - Convert "THANKS" into "COMMUNITY_THANKS" because source code contributors are not included and the document is meant to highlight those who would not normally appear in a GitHub contributors section - Update manual install instructions to new binary names - Remove library section from README This commit also ensures that CI only runs on relevant paths. Signed-off-by: Nick Gerace <[email protected]>
- Loading branch information
1 parent
b687b82
commit 2dbdbc3
Showing
7 changed files
with
46 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,22 +2,22 @@ | |
name = "gfold" | ||
version = "4.5.1" | ||
|
||
authors = ["Nick Gerace <[email protected]>"] | ||
categories = ["command-line-utilities", "command-line-interface"] | ||
description = "CLI tool to help keep track of your Git repositories." | ||
keywords = ["git", "cli"] | ||
readme = "README.md" | ||
authors = ["Nick Gerace <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/nickgerace/gfold" | ||
keywords = ["git", "cli"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/nickgerace/gfold" | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
opt-level = 3 | ||
strip = true | ||
lto = true | ||
opt-level = 3 | ||
panic = "abort" | ||
strip = true | ||
|
||
[dependencies] | ||
anyhow = { version = "1.0", features = ["backtrace"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters