11 lines
271 B
Bash
Executable file
11 lines
271 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# This script is supposed to be run by cargo-release.
|
|
# It updates the changelog as necessary.
|
|
|
|
set -euo pipefail
|
|
cd $WORKSPACE_ROOT
|
|
|
|
towncrier build --name Continuwuity --version $NEW_VERSION --date "$(date -I)"
|
|
|
|
"`dirname $0`"/linkify-changelog.py
|