Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: v2.2.0 #299

Merged
merged 1 commit into from
Nov 17, 2023
Merged
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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# 2.2.0

- chore(deps): bump prettier from 2.7.1 to 2.8.0 ([#195](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/195))
- chore(deps): bump prettier from 2.8.0 to 2.8.1 ([#199](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/199))
- chore(deps): bump minimatch from 5.1.0 to 5.1.1 ([#196](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/196))
- chore(deps): bump json5 from 2.2.1 to 2.2.3 ([#206](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/206))
- chore(deps): bump minimatch from 5.1.1 to 5.1.2 ([#203](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/203))
- chore(deps): bump prettier from 2.8.1 to 2.8.2 ([#207](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/207))
- chore(deps): bump prettier from 2.8.2 to 2.8.3 ([#208](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/208))
- chore(deps): bump minimatch from 5.1.2 to 6.1.6 ([#213](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/213))
- chore(deps): bump prettier from 2.8.3 to 2.8.4 ([#219](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/219))
- chore(deps): bump minimatch from 6.1.6 to 7.0.0 ([#223](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/223))
- chore: repo maintenance ([#224](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/224))
- feat: include better error logging ([#235](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/235))
- fix: avoid reporting NaN coverage ([#237](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/237))
- docs: update README.md inputs and FAQ ([#236](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/236))
- docs: included documentation about absolute path ([#238](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/238))
- chore(deps): bump prettier from 2.8.4 to 2.8.5 ([#239](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/239))
- chore(deps): bump prettier from 2.8.5 to 2.8.6 ([#240](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/240))
- chore(deps): bump prettier from 2.8.6 to 3.0.3 ([#278](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/278))
- chore(deps): bump actions/checkout from 3 to 4 ([#279](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/279))
- chore(deps): bump @eslint/eslintrc from 1.4.1 to 2.1.2 ([#271](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/271))
- test: clean env variables after each ([#289](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/289))
- fix: min_coverage parsing with default to 100 ([#290](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/290))
- chore(deps): bump @eslint/eslintrc from 2.1.2 to 2.1.3 ([#294](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/294))
- chore(deps): bump prettier from 3.0.3 to 3.1.0 ([#297](https://github.com/VeryGoodOpenSource/very_good_coverage/pull/297))

# 2.1.0

- feat: always output coverage
Expand Down
2 changes: 1 addition & 1 deletion tool/release_ready.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fi
# Retrieving all the commits in the current directory since the last tag.
previousTag="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_workflows\/pull\/\1))/p")
markdown_commits=$(echo "$raw_commits" | sed -En "s/\(#([0-9]+)\)/([#\1](https:\/\/github.com\/VeryGoodOpenSource\/very_good_coverage\/pull\/\1))/p")

if [[ "$markdown_commits" == "" ]]; then
echo "No commits since last tag, can't update."
Expand Down