diff options
author | Nick <nickagerace@gmail.com> | 2021-03-30 11:45:34 -0400 |
---|---|---|
committer | Nick <nickagerace@gmail.com> | 2021-03-30 11:45:34 -0400 |
commit | 760acd5588d8024f2fa45a98eb2ed02c452aa374 (patch) | |
tree | 798babd14b97961649407b80d90390125597d901 | |
parent | 77a4652dc7be555334a2031aec9fd986a4f3935f (diff) | |
download | gfold-760acd5588d8024f2fa45a98eb2ed02c452aa374.zip |
Update to 1.0.1
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | Cargo.lock | 8 | ||||
-rw-r--r-- | RELEASE.md | 13 | ||||
-rw-r--r-- | gfld/Cargo.toml | 4 | ||||
-rw-r--r-- | gfold/Cargo.toml | 2 |
5 files changed, 18 insertions, 17 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 334e907..645c848 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] -<!-- The latest version contains all changes. --> +The latest version contains all changes. + +## [1.0.1] - 2021-03-30 ### Added - `Cargo.lock` to the workspace to fix AUR builds +## Changed + +- CI to use `--locked` for builds + ## [1.0.0] - 2021-03-29 ### Added @@ -220,7 +220,7 @@ dependencies = [ [[package]] name = "gfld" -version = "1.0.0" +version = "1.0.1" dependencies = [ "git2", "log", @@ -229,7 +229,7 @@ dependencies = [ [[package]] name = "gfold" -version = "1.0.0" +version = "1.0.1" dependencies = [ "env_logger", "eyre", @@ -318,9 +318,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7" +checksum = "56d855069fafbb9b344c0f962150cd2c1187975cb1c22c1522c240d8c4986714" [[package]] name = "libgit2-sys" @@ -51,14 +51,9 @@ Check `crates.io` and `docs.rs` afterwards: - [gfold crate](https://crates.io/crates/gfold) - [gfld crate](https://crates.io/crates/gfld) -## Updating the Tap (`gfold` only) +## Updating the Homebrew Taps -Update the formula for the [tap](https://github.com/nickgerace/homebrew-gfold). +Update the formula for each tap. -## Edit the Release (`gfold` only) - -Check the release description and edit as necessary. - -```sh -https://github.com/nickgerace/gfold/releases/tag/<new-tag> -```
\ No newline at end of file +- [gfold tap](https://github.com/nickgerace/homebrew-gfold). +- ~~gfld tap~~ *(coming soon)* diff --git a/gfld/Cargo.toml b/gfld/Cargo.toml index 0683e79..8ce2958 100644 --- a/gfld/Cargo.toml +++ b/gfld/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gfld" -version = "1.0.0" +version = "1.0.1" license = "Apache-2.0" authors = ["Nick Gerace <nickagerace@gmail.com>"] description = "The minimal version of gfold, a CLI tool to help keep track of your Git repositories." @@ -21,4 +21,4 @@ opt-level = 'z' [dependencies] git2 = { version = "^0.13", default-features = false } log = { version = "^0.4", default-features = false } -walkdir = { version = "^2", default-features = false }
\ No newline at end of file +walkdir = { version = "^2", default-features = false } diff --git a/gfold/Cargo.toml b/gfold/Cargo.toml index f8a37e2..b0af2cc 100644 --- a/gfold/Cargo.toml +++ b/gfold/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gfold" -version = "1.0.0" +version = "1.0.1" license = "Apache-2.0" authors = ["Nick Gerace <nickagerace@gmail.com>"] description = "CLI tool to help keep track of your Git repositories." |