Version 2023-12-18

2023-12-18
Edward Loveall 2023-12-18 10:32:59 -05:00
rodzic 5e08f4b329
commit 8185e5e0ad
Nie znaleziono w bazie danych klucza dla tego podpisu
2 zmienionych plików z 17 dodań i 1 usunięć

16
script/release 100755
Wyświetl plik

@ -0,0 +1,16 @@
#!/bin/sh
set -e
todays_date=$(date "+%Y-%m-%d")
sed -i '' -E "s/[0-9]{4}-[0-9]{2}-[0-9]{2}/$todays_date/" src/version.cr
git add src/version.cr
git tag "$todays_date"
git commit -m "Version $todays_date"
echo
echo "Bumped version to $todays_date"
echo "Here are the commits since the last tag"
echo
git log $(git describe --tags --abbrev=0)~..HEAD --oneline

Wyświetl plik

@ -1,3 +1,3 @@
module Scribe
VERSION = "2023-05-21"
VERSION = "2023-12-18"
end