11# Change Log
22
3- ## 1.1 2020-05-23
3+ ## [ Bloaty McBloatface v1.1 ] ( https://github.com/google/bloaty/releases/tag/v1.1 ) ( 2020-05-23)
44
55### Added
66
77* ** Source Filtering** : Bloaty can now filter the results based on a regex
8- match. See "Source filter" in [ README.md] for details. (#177 )
8+ match. See "Source filter" in [ README.md] ( README.md ) for details. (#177 )
99* ** Show only File or VM** : It is possible to restrict the output to show only
1010 "VM SIZE" or "FILE SIZE" by passing ` --domain=vm ` or ` --domain=file ` . (#165 )
1111
3434* ** File size column moved left** : In the default output, the file size now
3535 appears on the left. This means that all numbers are now on the left, which
3636 leads to more readable output when viewing in a proportional font or in a
37- limited-width window. This shouldn't break any software, as anything consuming
38- Bloaty's output programmatically should be using ` --csv ` or ` --tsv ` . (#165 )
37+ limited-width window.
38+
39+ Old:
40+ ```
41+ VM SIZE FILE SIZE
42+ -------------- --------------
43+ 0.0% 0 .debug_info 7.97Mi 29.5%
44+ 0.0% 0 .debug_loc 6.40Mi 23.7%
45+ ```
46+
47+ New:
48+ ```
49+ FILE SIZE VM SIZE
50+ -------------- --------------
51+ 30.0% 8.85Mi 0.0% 0 .debug_info
52+ 24.7% 7.29Mi 0.0% 0 .debug_loc
53+ ```
54+
55+ This shouldn't cause breakage, as anything consuming Bloaty's output
56+ programmatically should be using ` --csv ` or ` --tsv ` . (#165 )
3957* ** ELF Segment labels now contain index** : Previously ELF segment labels looked
4058 like ` LOAD [RW] ` with segment flags only. Now they also contain the segment
4159 index, eg. ` LOAD #1 [RW] ` , so the output can distinguish between different
@@ -54,7 +72,7 @@ found by fuzzing.
5472
5573* ** Fixed crash bugs found by fuzzing** (#173 , #175 )
5674
57- ## 1.0 2018-08-07
75+ ## [ Bloaty McBloatface v1.0 ] ( https://github.com/google/bloaty/releases/tag/v1.0 ) ( 2018-08-07)
5876
5977This is the first formal release of Bloaty.
6078
0 commit comments