diff --git a/.grenrc.yml b/.grenrc.yml new file mode 100644 index 0000000..aa481cd --- /dev/null +++ b/.grenrc.yml @@ -0,0 +1,21 @@ +--- + dataSource: "prs" + ignoreLabels: + - "Apple M1" + - "duplicate" + - "help wanted" + - "invalid" + - "question" + - "wontfix" + onlyMilestones: false + groupBy: + "API Change": + - "API Change" + "New features / Enhancements": + - "enhancement" + - "internal" + "Bug Fixes": + - "bug" + "Misc": + - "misc" + changelogFilename: "CHANGELOG.md" diff --git a/scripts/make_release.sh b/scripts/make_release.sh index 01e85f7..25b59f9 100755 --- a/scripts/make_release.sh +++ b/scripts/make_release.sh @@ -69,4 +69,7 @@ git commit -m"Release ${GIT_TAG}" echo -e "${ACTION}Create new tag${NOCOLOR}" git tag ${GIT_TAG} -echo -e "${FINISHED}Local release is ready. Run `git push origin --tags`${NOCOLOR}" +echo -e "${FINISHED}Manual steps:${NOCOLOR}" +echo -e "${FINISHED} - Push the tag upstream 'git push origin ${GIT_TAG}'${NOCOLOR}" +echo -e "${FINISHED} - Create a new release https://github.com/google/cpu_features/releases/new${NOCOLOR}" +echo -e "${FINISHED} - Update the Release Notes 'gren release --override'${NOCOLOR}"