76 lines
2.4 KiB
Bash
76 lines
2.4 KiB
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
which awk sed jq 7z curl perl >/dev/null
|
||
|
|
||
|
cd "$(dirname "$0")/../.."
|
||
|
|
||
|
if ! git diff --quiet --exit-code; then
|
||
|
echo "Repository contains uncommitted changes"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
VERSION="$1"
|
||
|
DATE=$(date +%F)
|
||
|
TAG="v$VERSION"
|
||
|
VERSION_REGEX='[0-9]+\.[0-9]+\.[0-9]+(-[a-z0-9]+)?'
|
||
|
|
||
|
update_version_in_source () {
|
||
|
IFS=".-" read MAJOR MINOR REVISION EXTRA < <(echo "$VERSION")
|
||
|
UNDERLINE=$(printf -- '-%.0s' $(seq 1 ${#TAG}))
|
||
|
|
||
|
sed -i~ -bE "1,20{s/$VERSION_REGEX/$VERSION/g}" README.md
|
||
|
rm README.md~
|
||
|
|
||
|
sed -i~ -bE "4s/HEAD/$TAG ($DATE)/; 5s/-+/$UNDERLINE/" CHANGELOG.md
|
||
|
rm CHANGELOG.md~
|
||
|
|
||
|
sed -i~ -bE "s/(project\\s*\\(ArduinoJson\\s+VERSION\\s+).*?\\)/\\1$MAJOR.$MINOR.$REVISION)/" CMakeLists.txt
|
||
|
rm CMakeLists.txt~
|
||
|
|
||
|
sed -i~ -bE "s/\"version\":.*$/\"version\": \"$VERSION\",/" library.json
|
||
|
rm library.json~
|
||
|
|
||
|
sed -i~ -bE "s/version=.*$/version=$VERSION/" library.properties
|
||
|
rm library.properties~
|
||
|
|
||
|
sed -i~ -bE "s/version: .*$/version: $VERSION.{build}/" appveyor.yml
|
||
|
rm appveyor.yml~
|
||
|
|
||
|
sed -i~ -bE \
|
||
|
-e "s/ARDUINOJSON_VERSION .*$/ARDUINOJSON_VERSION \"$VERSION\"/" \
|
||
|
-e "s/ARDUINOJSON_VERSION_MAJOR .*$/ARDUINOJSON_VERSION_MAJOR $MAJOR/" \
|
||
|
-e "s/ARDUINOJSON_VERSION_MINOR .*$/ARDUINOJSON_VERSION_MINOR $MINOR/" \
|
||
|
-e "s/ARDUINOJSON_VERSION_REVISION .*$/ARDUINOJSON_VERSION_REVISION $REVISION/" \
|
||
|
src/ArduinoJson/version.hpp
|
||
|
rm src/ArduinoJson/version.hpp*~
|
||
|
}
|
||
|
|
||
|
commit_new_version () {
|
||
|
git add src/ArduinoJson/version.hpp README.md CHANGELOG.md library.json library.properties appveyor.yml CMakeLists.txt
|
||
|
git commit -m "Set version to $VERSION"
|
||
|
}
|
||
|
|
||
|
add_tag () {
|
||
|
CHANGES=$(awk '/\* /{ FOUND=1; print; next } { if (FOUND) exit}' CHANGELOG.md)
|
||
|
git tag -m "ArduinoJson $VERSION"$'\n'"$CHANGES" "$TAG"
|
||
|
}
|
||
|
|
||
|
push () {
|
||
|
git push --follow-tags
|
||
|
}
|
||
|
|
||
|
update_version_in_source
|
||
|
commit_new_version
|
||
|
add_tag
|
||
|
push
|
||
|
|
||
|
extras/scripts/build-arduino-package.sh . "../ArduinoJson-$TAG.zip"
|
||
|
extras/scripts/build-single-header.sh "src/ArduinoJson.h" "../ArduinoJson-$TAG.h"
|
||
|
extras/scripts/build-single-header.sh "src/ArduinoJson.hpp" "../ArduinoJson-$TAG.hpp"
|
||
|
extras/scripts/wandbox/publish.sh "../ArduinoJson-$TAG.h" > "../ArduinoJson-$TAG-wandbox.txt" || echo "Wandbox failed!"
|
||
|
extras/scripts/get-release-page.sh "$VERSION" "CHANGELOG.md" "../ArduinoJson-$TAG-wandbox.txt" > "../ArduinoJson-$TAG.md"
|
||
|
|
||
|
echo "You can now copy ../ArduinoJson-$TAG.md into arduinojson.org/collections/_versions/$VERSION.md"
|