Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "icey"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 2.4.10
PROJECT_NUMBER = 2.5.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 2 additions & 0 deletions scripts/release-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ docs=(

current_version=$(tr -d '[:space:]' < VERSION)
[ "$current_version" = "$version" ] || fail "VERSION contains $current_version, expected $version"
grep -Eq '^PROJECT_NUMBER[[:space:]]*=[[:space:]]*'"$version"'$' Doxyfile \
|| fail "Doxyfile PROJECT_NUMBER is not synced to $version"

grep -Eq '^ version = "'"$version"'"$' packaging/conan/conanfile.py \
|| fail "packaging/conan/conanfile.py is not synced to $version"
Expand Down
1 change: 1 addition & 0 deletions scripts/release-sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ docs=(
)

printf '%s\n' "$version" > VERSION
perl -0pi -e 's/^PROJECT_NUMBER[[:space:]]*=.*$/PROJECT_NUMBER = '"$version"'/m' Doxyfile

perl -0pi -e 's/version = "\d+\.\d+\.\d+"/version = "'"$version"'"/' packaging/conan/conanfile.py
cat > packaging/conan/conandata.yml <<EOF
Expand Down
Loading