Extended regular expressions (enabled via flag -E) don't support non-capturing groups under POSIX. Get rid of them as they don't add any value since we don't handle the captured groups in the first place.
10 lines
398 B
Bash
Executable File
10 lines
398 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
SEMVER_REGEX="([0-9]+)\.([0-9]+)\.([0-9]+)(-([0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*))?(\+[0-9A-Za-z-]+)?"
|
|
CHANGELOG_VERSION=$(grep -o -E $SEMVER_REGEX docs/release-notes.md | head -1)
|
|
VERSION=$(grep -o -E $SEMVER_REGEX uvicorn/__init__.py | head -1)
|
|
if [ "$CHANGELOG_VERSION" != "$VERSION" ]; then
|
|
echo "Version in changelog does not match version in uvicorn/__init__.py!"
|
|
exit 1
|
|
fi
|