dns-mail-discover 0.2.7

A dns based mail server discovery crate.
Documentation
1
2
3
4
5
6
7
8
9
10
VERSION := 0.2.7

.PHONY: release

release:
	sed -i 's/^version = .*/version = "$(VERSION)"/' Cargo.toml
	cargo fetch
	git commit -am "bump(version): $(VERSION)"
	git tag -a v$(VERSION) -m "Version $(VERSION)"
	git push && git push --tags