Browse code

add -ce support

Signed-off-by: Victor Vieux <victorvieux@gmail.com>
(cherry picked from commit 44aec1b69261e8cee0dd416adbbe7a2443f759d6)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Victor Vieux authored on 2017/02/23 10:38:37
Showing 1 changed files
... ...
@@ -10,7 +10,7 @@ fi
10 10
 changelogWellFormed=1
11 11
 
12 12
 # e.g. "## 1.12.3 (2016-10-26)"
13
-VER_LINE_REGEX='^## [0-9]+\.[0-9]+\.[0-9]+ \([0-9]+-[0-9]+-[0-9]+\)$'
13
+VER_LINE_REGEX='^## [0-9]+\.[0-9]+\.[0-9]+(-ce)? \([0-9]+-[0-9]+-[0-9]+\)$'
14 14
 while read -r line; do
15 15
   if ! [[ "$line" =~ $VER_LINE_REGEX ]]; then
16 16
     echo "Malformed changelog $changelogFile line \"$line\"" >&2