cargo-verison 0.1.90

Bump a package version
1
2
3
4
5
6
7
8
9
10
11
.PHONY: prod
prod:
	cargo build --bin cargo-verison
	ls -lah target/debug/cargo-verison
	cargo build --release --bin cargo-verison
	ls -lah target/release/cargo-verison

.PHONY: test
test:
	cargo test -- --test-threads 1
	cargo test --release -- --test-threads 1