Files
kumomta/assets/find-since-dev.sh
T
Wez Furlong 7a18a11e48 add helper script for cutting a release
This saves me some time updating the docs, and is more important
now that we use that since macro in rust crate source too.
2026-03-04 08:01:10 +00:00

9 lines
211 B
Bash
Executable File

#!/bin/bash
tag=$1
if [[ -z "$tag" ]] ; then
echo "Usage: ./assets/find-since-dev.sh 2026.03.04-bb93ecb1"
exit 1
else
perl -pi -w -e "s/since\('dev'/since('$tag'/g;" $(rg -l "since\('dev'" docs crates)
fi