diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | Makefile | 11 |
4 files changed, 11 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 61d6598..5311a0f 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.7.0] - 2020-11-11 ### Added @@ -198,7 +198,7 @@ dependencies = [ [[package]] name = "gfold" -version = "0.6.2" +version = "0.7.0" dependencies = [ "eyre", "git2", @@ -1,6 +1,6 @@ [package]
name = "gfold"
-version = "0.6.2"
+version = "0.7.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.6.2 +VERSION:=0.7.0 all: build @@ -25,8 +25,7 @@ install-local: build: pre-build cd $(MAKEPATH); cargo build -build-release: pre-build - cd $(MAKEPATH); cargo publish --dry-run +build-release: pre-build doc cd $(MAKEPATH); cargo build --release pre-build: @@ -57,8 +56,8 @@ release: @printf " Cargo.toml:\n $(shell grep $(VERSION) $(MAKEPATH)/Cargo.toml)\n" @printf "[2] Uncomment the unreleased string in CHANGELOG.md...\n" @printf " <!--The latest version contains all changes.-->\n" - @printf "[3] Run the following command to check documentation...\n" - @printf " cargo doc --open\n" - @printf "[4] Then, run the following command...\n" + @printf "[3] Then, run the following command...\n" @printf " time make build-release\n" + @printf "[4] Before merging, ensure that publishing works.\n" + @printf " cargo publish --dry-run\n" |