You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.3 KiB
69 lines
2.3 KiB
3 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
cd "$(dirname "$0")/../.."
|
||
|
|
||
|
VERSION="$1"
|
||
|
DATE=$(date +%F)
|
||
|
TAG="v$VERSION"
|
||
|
VERSION_REGEX="[0-9a-z\\.\\-]+"
|
||
|
|
||
|
update_version_in_source () {
|
||
|
IFS=".-" read MAJOR MINOR REVISION EXTRA < <(echo "$VERSION")
|
||
|
UNDERLINE=$(printf -- '-%.0s' $(seq 1 ${#TAG}))
|
||
|
|
||
|
sed -i~ -bE "s/version=$VERSION_REGEX/version=$VERSION/; s|ardu-badge.com/ArduinoJson/$VERSION_REGEX|ardu-badge.com/ArduinoJson/$VERSION|; " 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"
|
||
|
extras/scripts/get-release-page.sh "$TAG" "CHANGELOG.md" "../ArduinoJson-$TAG-wandbox.txt" > "../ArduinoJson-$TAG.md"
|
||
|
|
||
|
echo "You can now copy ../ArduinoJson-$TAG.md into arduinojson.org/collections/_versions/$VERSION.md"
|