From aa78fb0f9f74abaa33df8b82f8050d9a72b09060 Mon Sep 17 00:00:00 2001 From: Jan Grodowski Date: Mon, 8 Jan 2024 21:14:17 +0100 Subject: [PATCH] Bump to 0.4.7 and bring CHANGELOG.md up to date --- CHANGELOG.md | 13 ++++++++++++- lib/undercover/version.rb | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7da39e8..5c53e75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +# [0.4.7] - 2022-07-28 +### Fixed +- [Update of one-line block is ignored](https://github.com/grodowski/undercover/pull/207) by [@lizhangyuh](https://github.com/lizhangyuh) + +# [0.4.6] - 2023-04-21 +### Added +- #total_coverage and #total_branch_coverage in the LcovParser + ### Changed - Drop support for ruby < 2.7 +- Test coverage with both local `undercover` and Undercover GitHub App for demo purposes # [0.4.5] - 2022-07-28 ### Changed @@ -114,7 +123,9 @@ 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.4.4...HEAD +[Unreleased]: https://github.com/grodowski/undercover/compare/v0.4.7...HEAD +[0.4.7]: https://github.com/grodowski/undercover/compare/v0.4.6...v0.4.7 +[0.4.6]: https://github.com/grodowski/undercover/compare/v0.4.5...v0.4.6 [0.4.5]: https://github.com/grodowski/undercover/compare/v0.4.4...v0.4.5 [0.4.4]: https://github.com/grodowski/undercover/compare/v0.4.3...v0.4.4 [0.4.3]: https://github.com/grodowski/undercover/compare/v0.4.1...v0.4.3 diff --git a/lib/undercover/version.rb b/lib/undercover/version.rb index 9c1c3ed..5873703 100644 --- a/lib/undercover/version.rb +++ b/lib/undercover/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Undercover - VERSION = '0.4.6' + VERSION = '0.4.7' end