Skip to content

Commit 5854502

Browse files
committed
Release 0.8.4
1 parent bb115f0 commit 5854502

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

lib/undercover/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Undercover
4-
VERSION = '0.8.3'
4+
VERSION = '0.8.4'
55
end

spec/spec_helper.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
SimpleCov.start do
99
enable_coverage(:branch)
1010
add_filter(/^\/spec\//)
11+
add_filter('lib/undercover/version.rb')
1112
end
1213

1314
# Load undercover files AFTER SimpleCov starts

0 commit comments

Comments
 (0)