Skip to content

Commit 5435ff0

Browse files
committed
Prep 0.19.0 release
1 parent f261691 commit 5435ff0

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
Unreleased
1+
0.19.0 (2020-08-16)
22
==========
33

44
## Breaking Changes
55
* Dropped support for Ruby 2.4, it reached EOL
66

7-
## Noteworthy
8-
* The repo has moved to https://github.com/simplecov-ruby/simplecov - everything stays the same, redirects should work but you might wanna update anyhow
9-
* The primary development branch is now `main`, not `master` anymore. If you get simplecov directly from github change your reference. For a while `master` will still be occasionally updated but that's no long term solion.
10-
117
## Enhancements
12-
* observe forked processes (enable with SimpleCov.enable_for_subprocesses)
8+
* observe forked processes (enable with SimpleCov.enable_for_subprocesses). See [#881](https://github.com/simplecov-ruby/simplecov/pull/881), thanks to [@robotdana](https://github.com/robotdana)
139
* SimpleCov distinguishes better that it stopped processing because of a previous error vs. SimpleCov is the originator of said error due to coverage requirements.
1410

1511
## Bugfixes
1612
* Changing the `SimpleCov.root` combined with the root filtering didn't work. Now they do! Thanks to [@deivid-rodriguez](https://github.com/deivid-rodriguez) and see [#894](https://github.com/simplecov-ruby/simplecov/pull/894)
17-
* in parallel test execution it could happen that the last coverage result was written when it didn't complete yet, changed to only write it once it's the final result
13+
* in parallel test execution it could happen that the last coverage result was written to disk when it didn't complete yet, changed to only write it once it's the final result
1814
* if you run parallel tests only the final process will report violations of the configured test coverage, not all previous processes
1915
* changed the parallel_tests merging mechanisms to do the waiting always in the last process, should reduce race conditions
2016

17+
## Noteworthy
18+
* The repo has moved to https://github.com/simplecov-ruby/simplecov - everything stays the same, redirects should work but you might wanna update anyhow
19+
* The primary development branch is now `main`, not `master` anymore. If you get simplecov directly from github change your reference. For a while `master` will still be occasionally updated but that's no long term solion.
20+
2121
0.18.5 (2020-02-25)
2222
===================
2323

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
simplecov (0.18.5)
4+
simplecov (0.19.0)
55
docile (~> 1.1)
66
simplecov-html (~> 0.11)
77

lib/simplecov/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 SimpleCov
4-
VERSION = "0.18.5"
4+
VERSION = "0.19.0"
55
end

test_projects/monorepo/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
simplecov (0.18.5)
4+
simplecov (0.19.0)
55
docile (~> 1.1)
66
simplecov-html (~> 0.11)
77

test_projects/parallel_tests/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
simplecov (0.18.5)
4+
simplecov (0.19.0)
55
docile (~> 1.1)
66
simplecov-html (~> 0.11)
77

0 commit comments

Comments
 (0)