summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-04-12 15:57:40 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-04-12 16:07:00 +0200
commit36f757acfe2dcef3352527c2850379771b16bee4 (patch)
treedfd6c2224dda69d7ac0f1df0afb05b30c2a17777 /Makefile
parent3dabda18bf761126626db8a7cd61a13b3e4d481b (diff)
Release 0.6.0.v0.6.0
- Also bump rfc2822 to 0.6.0. After all, we create tags for the versions.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 150e8dcb..414a2f99 100644
--- a/Makefile
+++ b/Makefile
@@ -155,7 +155,8 @@ sanity-check-versions:
find . -name Cargo.toml | while read TOML ; do \
echo -n "$$TOML " ;\
grep '^version *=' $$TOML | grep -q $$V || bad version ;\
- grep '^documentation *=' $$TOML | grep -q $$V || bad documentation ;\
+ grep '^documentation *=' $$TOML \
+ | egrep -q "($${V})|(https://docs.rs/)" || bad documentation ;\
grep '{ *path *= *"' $$TOML | while read L ; do \
echo $$L | grep -q $$VV || bad intra-workspace dependency ;\
done ;\