Skip to content

Commit 0bbbbd4

Browse files
committed
bump to 0.7.3
run tests without bundler to track version.rb coverage
1 parent 3a411d5 commit 0bbbbd4

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: |
1919
gem install bundler undercover --no-doc
2020
bundle install --jobs 4 --retry 3
21-
bundle exec rake
21+
rake
2222
- name: undercover (local)
2323
run: |
2424
git fetch --update-head-ok origin master:master

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
# [0.7.3] - 2025-07-13
10+
11+
### Fixed
912
- Improve Options#parse with glob braces support, strip quotes properly from .undercover config files
1013
- Fix Result#coverage_f to support ignored branches
1114
- Fix error parsing JSON coverage with branch coverage disabled ([#231](https://github.com/grodowski/undercover/issues/231))
@@ -177,7 +180,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
177180
### Added
178181
- First release of `undercover` 🎉
179182

180-
[Unreleased]: https://github.com/grodowski/undercover/compare/v0.7.2...HEAD
183+
[Unreleased]: https://github.com/grodowski/undercover/compare/v0.7.3...HEAD
184+
[0.7.3]: https://github.com/grodowski/undercover/compare/v0.7.2...v0.7.3
181185
[0.7.2]: https://github.com/grodowski/undercover/compare/v0.7.1...v0.7.2
182186
[0.7.1]: https://github.com/grodowski/undercover/compare/v0.7.0...v0.7.1
183187
[0.7.0]: https://github.com/grodowski/undercover/compare/v0.6.6...v0.7.0

lib/undercover/version.rb

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

33
module Undercover
4-
VERSION = '0.7.2'
4+
# :nocov:
5+
VERSION = '0.7.3'
6+
# :nocov:
57
end

0 commit comments

Comments
 (0)