renovate 0.2.19

A new way to handle Postgres schema migration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
build:
	@cargo build
	@rm -f ~/.cargo/bin/renovate && cp ~/.target/debug/renovate ~/.cargo/bin/

test:
	@cargo nextest run --all-features

snapshot:
	@TRYCMD=overwrite cargo test --test cli_tests --all-features

release:
	@cargo release tag --execute
	@git cliff -o CHANGELOG.md
	@git commit -a -m "Update CHANGELOG.md" || true
	@git push origin master
	@cargo release push --execute

.PHONY: build cov test release