corrator 1.4.1

A tool to verify the versions of apps used inside docker containers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
default:
  @just --list

# Bump version, tag, and release
release VERSION:
  sed -i "/^version = /s/\"[0-9a-z.-]*\"/\"{{VERSION}}\"/" Cargo.toml
  cargo update
  cargo test
  git commit -am "chore(release): prepare for v{{VERSION}}"
  git tag -a v{{VERSION}} -m v{{VERSION}}
  git push
  git push origin --tags
  cargo publish