From d20f4682b98ed58490eb4148b43c88f67a0cb39a Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Fri, 24 May 2024 16:18:31 +0100 Subject: [PATCH] chore(very_good_core): v0.7.0 (#110) --- very_good_core/CHANGELOG.md | 5 ++ very_good_core/brick.yaml | 2 +- very_good_core/tool/release_ready.sh | 78 ++++++++++++++++++++++++++++ 3 files changed, 84 insertions(+), 1 deletion(-) create mode 100644 very_good_core/tool/release_ready.sh diff --git a/very_good_core/CHANGELOG.md b/very_good_core/CHANGELOG.md index fa181b5..c418233 100644 --- a/very_good_core/CHANGELOG.md +++ b/very_good_core/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.7.0 + +- feat!: ensure template uses Flutter 3.22 with Dart 3.4 ([#97](https://github.com/VeryGoodOpenSource/very_good_templates/pull/97)) +- fix: update index.html to support latest convention ([#106](https://github.com/VeryGoodOpenSource/very_good_templates/pull/106)) + # 0.6.1 - fix: deprecated imperative apply of Flutter's Gradle plugins ([#70](https://github.com/VeryGoodOpenSource/very_good_templates/pull/70)) diff --git a/very_good_core/brick.yaml b/very_good_core/brick.yaml index b4a1d00..2ca7d1f 100644 --- a/very_good_core/brick.yaml +++ b/very_good_core/brick.yaml @@ -1,7 +1,7 @@ name: very_good_core description: A Very Good Flutter app created by Very Good Ventures. repository: https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_core -version: 0.6.1 +version: 0.7.0 environment: mason: ">=0.1.0-dev.52 <0.1.0" diff --git a/very_good_core/tool/release_ready.sh b/very_good_core/tool/release_ready.sh new file mode 100644 index 0000000..2f7fd8a --- /dev/null +++ b/very_good_core/tool/release_ready.sh @@ -0,0 +1,78 @@ +#!/bin/bash + +# Ensures that the brick is ready for a release. +# +# Will update the brick.yaml file and update the CHANGELOG.md. +# +# Set it up for a new version: +# `./release_ready.sh + +# Check if current directory is usable for this script, if so we assume it is correctly set up. +if [ ! -f "brick.yaml" ]; then + echo "$(pwd) is not a valid brick." + exit 1 +fi + +currentBranch=$(git symbolic-ref --short -q HEAD) +if [[ ! $currentBranch == "main" ]]; then + echo "Releasing is only supported on the main branch." + exit 1 +fi + +# Get information +old_version="" +if [ -f "brick.yaml" ]; then + old_version=$(cat brick.yaml | pcregrep 'version: (.*?)' | tr " " "\n" | tail -1) +fi + +if [ -z "$old_version" ]; then + echo "Current version was not resolved." + exit 1 +fi + +# Get new version +new_version="$1"; + +if [[ "$new_version" == "" ]]; then + echo "No new version supplied, please provide one" + exit 1 +fi + +if [[ "$new_version" == "$old_version" ]]; then + echo "Current version is $old_version, can't update." + exit 1 +fi + +# Retrieving all the commits in the current directory since the last tag. +previousTag="very_good_core-v${old_version}" +raw_commits="$(git log --pretty=format:"%s" --no-merges --reverse $previousTag..HEAD -- .)" +markdown_commits=$(echo "$raw_commits" | sed -En "s/\(#([0-9]+)\)/([#\1](https:\/\/github.com\/VeryGoodOpenSource\/very_good_templates\/pull\/\1))/p") + +if [[ "$markdown_commits" == "" ]]; then + echo "No commits since last tag, can't update." + exit 0 +fi +commits=$(echo "$markdown_commits" | sed -En "s/^/- /p") + +echo "Updating version to $new_version" +if [ -f "brick.yaml" ]; then + sed -i '' "s/version: $old_version/version: $new_version/g" brick.yaml +fi + +if grep -q v$new_version "CHANGELOG.md"; then + echo "CHANGELOG already contains version $new_version." + exit 1 +fi + +# Add a new version entry with the found commits to the CHANGELOG.md. +echo "# ${new_version} \n\n${commits}\n\n$(cat CHANGELOG.md)" > CHANGELOG.md +echo "CHANGELOG generated, validate entries here: $(pwd)/CHANGELOG.md" + +echo "Creating git branch for ver_good_cli@$new_version" +git checkout -b "chore/very_good_core-v$new_version" > /dev/null + +git add brick.yaml CHANGELOG.md + +echo "" +echo "Run the following command if you wish to commit the changes:" +echo "git commit -m \"chore(very_good_core): v$new_version\"" \ No newline at end of file