Skip to content

Commit 789d081

Browse files
committed
Morty 0.8.0
1 parent 2c228c9 commit 789d081

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
8+
9+
## 0.8.0 - 2022-08-26
810
### Added
911
- Add `Compiled by morty` comment to output files (with version and datetime)
1012
- `top_module` parameter to restrict pickled output and output manifest to the needed files for module hierarchy

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "morty"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "A SystemVerilog source file pickler."
55
authors = ["Florian Zaruba <[email protected]>", "Fabian Schuiki <[email protected]>", "Michael Rogenmoser <[email protected]>"]
66
edition = "2018"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ pub fn build_syntax_tree(
290290
strip_comments,
291291
)
292292
})
293-
.filter_map(|r| r.map_err(|e| warn!("Unable to parse {:?}", e)).ok())
293+
.filter_map(|r| r.map_err(|e| warn!("Continuing with {:?}", e)).ok())
294294
.collect();
295295
syntax_trees.extend(v);
296296
} else {

0 commit comments

Comments
 (0)