TAG        ?= $(shell cargo pkgid --offline | cut -d\# -f2 | cut -d: -f2)

tag: # Tag current release
	#git commit -am "Release $(TAG)"
	#git push
	git tag "v$(TAG)" -a -m "Release $(TAG)"  && git push --tags
