summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Gerace <nickagerace@gmail.com>2020-10-07 22:45:12 -0400
committerNick Gerace <nickagerace@gmail.com>2020-10-07 22:51:40 -0400
commit7020079041cebddcb71ec4158b3e714bcbf97695 (patch)
treef061fb89aa4207cdccbf1e8582c081f0b758a407
parent093f3a0171857209bb292b1f4fbde5434a5eee07 (diff)
downloadgfold-7020079041cebddcb71ec4158b3e714bcbf97695.zip
Update to 0.5.2
Update to 0.5.2. Update all docs and files to reflect the new version.
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--Makefile2
-rw-r--r--README.md16
5 files changed, 15 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f89b11..8e7780a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,10 @@ 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).
## [Unreleased]
-<!-- The latest version contains all changes. -->
+
+The latest version contains all changes.
+
+## [0.5.2] - 2020-10-08
### Added
diff --git a/Cargo.lock b/Cargo.lock
index dfb5ad5..2b1afd6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -178,7 +178,7 @@ dependencies = [
[[package]]
name = "gfold"
-version = "0.5.1"
+version = "0.5.2"
dependencies = [
"git2",
"prettytable-rs",
diff --git a/Cargo.toml b/Cargo.toml
index 539352f..7381ef0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gfold"
-version = "0.5.1"
+version = "0.5.2"
authors = ["Nick Gerace <nickagerace@gmail.com>"]
edition = "2018"
diff --git a/Makefile b/Makefile
index 2e62dd5..b2d8e9b 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
MAKEPATH:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
NAME:=gfold
-VERSION:=0.5.1
+VERSION:=0.5.2
run:
@cd $(MAKEPATH); cargo run -- ..
diff --git a/README.md b/README.md
index af758ea..a01bd6a 100644
--- a/README.md
+++ b/README.md
@@ -38,11 +38,11 @@ Once you have it downloaded, you can add it to your ```PATH```.
Here is an example on how to do that on macOS and Linux...
```bash
-chmod +x ./gfold
-sudo mv ./gfold /usr/local/bin/
+chmod +x gfold
+sudo mv gfold /usr/local/bin/
```
-*Note*: you may have to reload your shell in order to see ```gfold``` in your ```PATH```.
+You may have to reload your shell in order to see ```gfold``` in your ```PATH```.
#### Advanced Management
@@ -52,9 +52,9 @@ Here is a full install workflow...
```bash
wget https://github.com/nickgerace/gfold/releases/download/$VERSION/gfold-linux-gnu-amd64)
mv gfold-linux-gnu-amd64 gfold-$VERSION
-chmod +x ./gfold-$VERSION
+chmod +x gfold-$VERSION
sudo mkdir /usr/local/gfold/
-sudo mv ./gfold-$VERSION /usr/local/gfold/
+sudo mv gfold-$VERSION /usr/local/gfold/
ln -s /usr/local/gfold/gfold-$VERSION /usr/local/bin/gfold
```
@@ -68,19 +68,19 @@ Special thanks to [orhun](https://github.com/orhun) for [maintaining](https://gi
- [gfold](https://aur.archlinux.org/packages/gfold/) (builds from source)
- [gfold-git](https://aur.archlinux.org/packages/gfold-git/) (VCS/development package)
-**Note**: many people choose to use an [AUR helper](https://wiki.archlinux.org/index.php/AUR_helpers), such as [yay](https://github.com/Jguer/yay) (example: ```yay -S gfold```), in order to install their AUR packages.
+Many people choose to use an [AUR helper](https://wiki.archlinux.org/index.php/AUR_helpers), such as [yay](https://github.com/Jguer/yay) (example: ```yay -S gfold```), in order to install their AUR packages.
### 3) Cargo Install
You can build from source with ```cargo``` by executing the following...
```bash
-cargo install --git https://github.com/nickgerace/gfold --tag 0.5.1
+cargo install --git https://github.com/nickgerace/gfold --tag 0.5.2
```
## Usage
-For all the ways on how to use this application, pass in the ```--help``` flag.
+For all the ways on how to use this application, pass in the ```-h```, or ```--help```, flag.
```bash
gfold --help