diff --git a/Changes b/Changes index 99745c5ee..a0ab32e4d 100644 --- a/Changes +++ b/Changes @@ -13,12 +13,17 @@ Verilator 5.041 devel **Other:** +* Improve automatic selection of logic for DFG synthesis (#6370). [Geza Lore] +* Improve `covergroup with function sample` handling (#6387). [Jakub Wasilewski] +* Optimize dead functions without references (#6380). [Artur Bieniek, Antmicro Ltd.] * Fix while loop hang on timing-delayed assignment (#6343) (#6354). [Krzysztof Bieganski, Antmicro Ltd.] +* Fix driver analysis of partially assigned variables (#6364) (#6378). [Geza Lore] * Fix V3Hash MacOS ambiguity (#6350). [Lan Zongwei] * Fix cmake APPLE variable (#6351). [Lan Zongwei] * Fix randomize local after parameters applied (#6371). [Alex Solomatnikov] * Fix package imports not found after parameters applied (#6373). [Alex Solomatnikov] * Fix COVERAGEIGN-ignored `get_inst_coverage` and other covergroup methods (#6383). [Alex Solomatnikov] +* Fix error when modport variable is unresolved (#6386). [Ryszard Rozak, Antmicro Ltd.] * Fix wire array with initial assignment (#6391). [Alex Solomatnikov] diff --git a/nodist/log_changes b/nodist/log_changes index 77874edc7..e3f0378cf 100755 --- a/nodist/log_changes +++ b/nodist/log_changes @@ -22,6 +22,8 @@ def message_section(msg): return 40 if re.match(r'^(Internals|CI|Tests)', msg): return -1 + if re.match(r'^Bump.* from .* to .*', msg): # dependabot + return -1 return 0