File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66
77## [ Unreleased]
88
9+ # [ 0.8.4] - 2026-02-06
910### Fixed
1011- Print branch coverage even on n/a lines (https://github.com/grodowski/undercover/pull/249 ) by [ @kuahyeow ] ( https://github.com/kuahyeow )
1112
13+ ### Added
14+ - Ruby 4 support in CI
15+
1216# [ 0.8.3] - 2025-11-20
1317### Fixed
1418- Normalize slash prefix in FilterSet support to work with the 'rails' profile (https://github.com/grodowski/undercover/pull/244 )
@@ -212,7 +216,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
212216### Added
213217- First release of ` undercover ` 🎉
214218
215- [ Unreleased ] : https://github.com/grodowski/undercover/compare/v0.8.3...HEAD
219+ [ Unreleased ] : https://github.com/grodowski/undercover/compare/v0.8.4...HEAD
220+ [ 0.8.4 ] : https://github.com/grodowski/undercover/compare/v0.8.3...v0.8.4
216221[ 0.8.3 ] : https://github.com/grodowski/undercover/compare/v0.8.2...v0.8.3
217222[ 0.8.2 ] : https://github.com/grodowski/undercover/compare/v0.8.1...v0.8.2
218223[ 0.8.1 ] : https://github.com/grodowski/undercover/compare/v0.8.0...v0.8.1
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module Undercover
4- VERSION = '0.8.3 '
4+ VERSION = '0.8.4 '
55end
Original file line number Diff line number Diff line change 88SimpleCov . start do
99 enable_coverage ( :branch )
1010 add_filter ( /^\/ spec\/ / )
11+ add_filter ( 'lib/undercover/version.rb' )
1112end
1213
1314# Load undercover files AFTER SimpleCov starts
You can’t perform that action at this time.
0 commit comments