summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Gerace <nickagerace@gmail.com>2020-11-11 22:47:27 -0500
committerNick Gerace <nickagerace@gmail.com>2020-11-11 22:52:49 -0500
commitb369dbff916f5d27a42044f74d92cd84ed5a16af (patch)
treea389220326024039b021c7fee3db652c24198f6b
parentfe773438f1cdfb0f053928e8a4867ecf19e7316b (diff)
downloadgfold-b369dbff916f5d27a42044f74d92cd84ed5a16af.zip
Update to 0.7.0
Update to 0.7.0 and change all relevant files with the new semver.
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--Makefile11
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
diff --git a/Cargo.lock b/Cargo.lock
index 951334e..327a238 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -198,7 +198,7 @@ dependencies = [
[[package]]
name = "gfold"
-version = "0.6.2"
+version = "0.7.0"
dependencies = [
"eyre",
"git2",
diff --git a/Cargo.toml b/Cargo.toml
index f386569..0e87053 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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."
diff --git a/Makefile b/Makefile
index 9e99e32..3ac2833 100644
--- a/Makefile
+++ b/Makefile
@@ -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"