Skip to content

Commit

Permalink
Bump v4.3.0 (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytro-savochkin authored Nov 15, 2024
1 parent 13f93c2 commit c2a2c9c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ jobs:
run: |
echo "Total line test coverage: ${{ steps.coverage.outputs.COVERAGE_LINE }}%"
echo "Total branch test coverage: ${{ steps.coverage.outputs.COVERAGE_BRANCH }}%"
- name: Fail if coverage is less than 100%
if: steps.coverage.outputs.COVERAGE_LINE != 100 || steps.coverage.outputs.COVERAGE_BRANCH != 100
- name: Fail if coverage is low
if: steps.coverage.outputs.COVERAGE_LINE != 100 || steps.coverage.outputs.COVERAGE_BRANCH < 95
uses: actions/github-script@v7
with:
script: "core.setFailed('Please make sure test coverage is 100%. \
script: "core.setFailed('Please make sure line test coverage is 100% and branch test coverage is > 95%. \
Currently: ${{ steps.coverage.outputs.COVERAGE_LINE }}% (line), \
${{ steps.coverage.outputs.COVERAGE_BRANCH }}% (branch).')"
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ User-visible changes worth mentioning.

---

## 4.3.0 - 2024-11-15
- Add support for Rails 8.0 - Thanks @zhuravel

[(full changelog since previous version)](https://github.com/jpignata/temping/compare/v4.2.0...v4.3.0)

## 4.2.0 - 2024-08-10
- Add support for Rails 7.2 - Thanks @yosiat

Expand Down
2 changes: 1 addition & 1 deletion temping.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "temping"
s.version = "4.2.0"
s.version = "4.3.0"
s.authors = ["John Pignata"]
s.email = "[email protected]"
s.homepage = "https://github.com/jpignata/temping"
Expand Down

0 comments on commit c2a2c9c

Please sign in to comment.