yyid 0.5.0

Yyid generator (random tokens like UUIDv4, but using all the bits)
Documentation
ci:
	cargo build --verbose
	cargo fmt -- --check --verbose
	cargo clippy
	cargo test --verbose
	cargo run --example basic
	@echo "Done."

local:	
	cargo build --verbose
	cargo fmt -- --verbose
	cargo clippy
	cargo test --verbose
	cargo run --example basic

print-version:
	cargo run --example version

release-tag:
	$(shell cargo run --example release-tag)
	git push --tags

publish:
	cargo publish

release: release-tag publish