diff options
author | Nick Gerace <nickagerace@gmail.com> | 2021-02-15 00:04:38 -0500 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2021-02-15 00:04:38 -0500 |
commit | 9305d38dc4c11141c6024869d1e24beca26b7b70 (patch) | |
tree | 9439cdbda83b5aa26d22213058365a1d16544792 | |
parent | 728208357158adcd5442b7e756578132d3b8e9c9 (diff) | |
download | gfold-9305d38dc4c11141c6024869d1e24beca26b7b70.zip |
Update to 0.9.0
Update to 0.9.0 and change all relevant files with the new semver.
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | Makefile | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e2fbf2..0a3a6fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,10 @@ All changes are from [@nickgerace](https://github.com/nickgerace) unless otherwi 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.9.0] - 2021-02-15 ### Added @@ -220,7 +220,7 @@ dependencies = [ [[package]] name = "gfold" -version = "0.8.4" +version = "0.9.0" dependencies = [ "env_logger", "eyre", @@ -1,6 +1,6 @@ [package] name = "gfold" -version = "0.8.4" +version = "0.9.0" license = "Apache-2.0" authors = ["Nick Gerace <nickagerace@gmail.com>"] description = "CLI tool to help keep track of your Git repositories." @@ -6,7 +6,7 @@ MAKEPATH:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) NAME:=gfold -VERSION:=0.8.4 +VERSION:=0.9.0 all: build |