summaryrefslogtreecommitdiff
path: root/Makefile
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 /Makefile
parentfe773438f1cdfb0f053928e8a4867ecf19e7316b (diff)
downloadgfold-b369dbff916f5d27a42044f74d92cd84ed5a16af.zip
Update to 0.7.0
Update to 0.7.0 and change all relevant files with the new semver.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 5 insertions, 6 deletions
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"