Skip to content

Commit

Permalink
Morty 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Aug 26, 2022
1 parent 2c228c9 commit 789d081
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

## 0.8.0 - 2022-08-26
### Added
- Add `Compiled by morty` comment to output files (with version and datetime)
- `top_module` parameter to restrict pickled output and output manifest to the needed files for module hierarchy
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "morty"
version = "0.7.0"
version = "0.8.0"
description = "A SystemVerilog source file pickler."
authors = ["Florian Zaruba <zarubaf@iis.ee.ethz.ch>", "Fabian Schuiki <fschuiki@iis.ee.ethz.ch>", "Michael Rogenmoser <michaero@iis.ee.ethz.ch>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ pub fn build_syntax_tree(
strip_comments,
)
})
.filter_map(|r| r.map_err(|e| warn!("Unable to parse {:?}", e)).ok())
.filter_map(|r| r.map_err(|e| warn!("Continuing with {:?}", e)).ok())
.collect();
syntax_trees.extend(v);
} else {
Expand Down

0 comments on commit 789d081

Please sign in to comment.