Skip to content

Commit 7d38ee9

Browse files
committed
Version 0.13.0
1 parent 2589f12 commit 7d38ee9

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
0.13.0 (2024-09-08)
2+
==================
3+
4+
## Enhancements
5+
* Cache erb templates when generating report. See [#114](https://github.com/simplecov-ruby/simplecov-html/pull/114) (thanks [@fatkodima](https://github.com/fatkodima)).
6+
* Print branch coverage with line coverage. See [#103](https://github.com/simplecov-ruby/simplecov-html/pull/103) (thanks [@jeremyevans](https://github.com/jeremyevans)).
7+
* Add line number anchors. Thanks [@jantman](https://github.com/jantman) for the proposal [#49](https://github.com/simplecov-ruby/simplecov-html/issues/49) and [@nishidayuya](https://github.com/nishidayuya) for the patch [#106](https://github.com/simplecov-ruby/simplecov-html/pull/106)!
8+
* Add inline assets option. See [#107](https://github.com/simplecov-ruby/simplecov-html/pull/107) (thanks [@frankh](https://github.com/frankh)).
9+
* Make close button look better. See [#140](https://github.com/simplecov-ruby/simplecov-html/pull/140) (thanks [@anthony0030](https://github.com/anthony0030)).
10+
* Avoid "permission denied" errors by removing the destination before copying assets [#135](https://github.com/simplecov-ruby/simplecov-html/pull/135) (thanks [@tomeon](https://github.com/tomeon)).
11+
* Improve clarity of line and branch coverage format. See [#125](https://github.com/simplecov-ruby/simplecov-html/pull/125) (thanks [@joshuapinter](https://github.com/joshuapinter)).
12+
13+
## Bugfixes
14+
* Avoid loading favicon.png that does not exist. See [#123](https://github.com/simplecov-ruby/simplecov-html/pull/123) (thanks [@yyamanoi1222](https://github.com/yyamanoi1222)).
15+
16+
## Misc
17+
* Reduced gem size by not including development-only files.
18+
* Bundle jQuery 3.7.1. See [#108](https://github.com/simplecov-ruby/simplecov-html/issues/108) (thanks [@jgarland79](https://github.com/jgarland79) for reporting the issue).
19+
120
0.12.3 (2020-09-23)
221
==================
322

@@ -36,6 +55,8 @@ Yes it looks different, no it's not a redesign - just a side effect of lots of d
3655
* make sure encoding errors won't crash the formatter
3756
* When viewing a short source file while you have a big file list you will no longer be able to scroll on after the source file has ended
3857

58+
59+
3960
0.11.0 (2020-01-28)
4061
=======
4162

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GIT
1010
PATH
1111
remote: .
1212
specs:
13-
simplecov-html (0.12.3)
13+
simplecov-html (0.13.0)
1414

1515
GEM
1616
remote: https://rubygems.org/

lib/simplecov-html/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module SimpleCov
44
module Formatter
55
class HTMLFormatter
6-
VERSION = "0.12.3"
6+
VERSION = "0.13.0"
77
end
88
end
99
end

0 commit comments

Comments
 (0)