Skip to content

Commit

Permalink
release notes for 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
grodowski committed Dec 23, 2024
1 parent ab700f9 commit e2ed94f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

# [0.6.3] - 2024-12-23

### Fixed
- Fix false positives with empty blocks/methods on a single line ([#216](https://github.com/grodowski/undercover/issues/216)) by [@splattael](https://github.com/splattael).
- Updated list of default excluded directories (added `db/` and `config/`)

# [0.6.0] - 2024-12-12
### Added
- Add support for including and exluding files by glob patterns, supplied through CLI args and the configuration file (#146)
Expand Down Expand Up @@ -137,7 +143,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- First release of `undercover` 🎉

[Unreleased]: https://github.com/grodowski/undercover/compare/v0.6.0...HEAD
[Unreleased]: https://github.com/grodowski/undercover/compare/v0.6.3...HEAD
[0.6.3]:https://github.com/grodowski/undercover/compare/v0.6.3...v0.6.0
[0.6.0]: https://github.com/grodowski/undercover/compare/v0.6.0...v0.5.0
[0.5.0]: https://github.com/grodowski/undercover/compare/v0.4.7...v0.5.0
[0.4.7]: https://github.com/grodowski/undercover/compare/v0.4.6...v0.4.7
Expand Down
2 changes: 1 addition & 1 deletion lib/undercover/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Undercover
VERSION = '0.6.2'
VERSION = '0.6.3'
end

Check warning on line 5 in lib/undercover/version.rb

View check run for this annotation

UndercoverCI / coverage

Untested module

Module `Undercover` is missing coverage for line (node coverage: 0.0).
Raw output
3: module Undercover hits: n/a
4:   VERSION = '0.6.3' hits: n/a
5: end hits: n/a

0 comments on commit e2ed94f

Please sign in to comment.