summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md13
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--Makefile2
-rw-r--r--README.md4
5 files changed, 16 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 44304e3..e8cf11d 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.6.1] - 2020-10-12
### Added
@@ -16,7 +19,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
-- LICENSE to be extended through 20201 from [@nickgerace](https://github.com/nickgerace).
+- LICENSE to be extended through 2021 from [@nickgerace](https://github.com/nickgerace).
+- Match blocks in ```lib.rs``` to be consolidated from [@nickgerace](https://github.com/nickgerace).
+- Nearly all contents of ```lib.rs``` to return errors back to the calling function in ```main.rs``` from [@nickgerace](https://github.com/nickgerace).
+
+### Removed
+
+- Duplicate code related to the match block consolidation from [@nickgerace](https://github.com/nickgerace).
## [0.6.0] - 2020-10-10
diff --git a/Cargo.lock b/Cargo.lock
index 471b650..5062fc0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -188,7 +188,7 @@ dependencies = [
[[package]]
name = "gfold"
-version = "0.6.0"
+version = "0.6.1"
dependencies = [
"eyre",
"git2",
diff --git a/Cargo.toml b/Cargo.toml
index da2ea8c..9825dcb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gfold"
-version = "0.6.0"
+version = "0.6.1"
authors = ["Nick Gerace <nickagerace@gmail.com>"]
edition = "2018"
diff --git a/Makefile b/Makefile
index 264c4a5..b4b40c9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
MAKEPATH:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
NAME:=gfold
-VERSION:=0.6.0
+VERSION:=0.6.1
all: build
diff --git a/README.md b/README.md
index bada6f8..4c85d5a 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ You can use symbolic links to swap between versions, and manage multiple at a ti
Here is a full install workflow example...
```bash
-VERSION=0.6.0
+VERSION=0.6.1
PLATFORM=linux-gnu-amd64
wget https://github.com/nickgerace/gfold/releases/download/$VERSION/gfold-$PLATFORM
@@ -79,7 +79,7 @@ Many people choose to use an [AUR helper](https://wiki.archlinux.org/index.php/A
You can build from source with ```cargo``` by executing the following...
```bash
-cargo install --git https://github.com/nickgerace/gfold --tag 0.6.0
+cargo install --git https://github.com/nickgerace/gfold --tag 0.6.1
```
## Usage