Releases: chipsalliance/verible
Releases · chipsalliance/verible
v0.0-378-g8bfe7a7: Add unit-tests for AutoPopStack.
issues #289 PiperOrigin-RevId: 310247369
v0.0-375-g7d55b5b: Add a simple way to ignore #-comments in lint configuration files.
Lint rules can be configured by flag, in which they are a comma-separated list of rules. In a configuration file, we have multiple lines with one rule configured per line. In such a file, it is desirable to allow for comments. This allows for common end-of-line hash comments. While at it, allow whitespace before and after rules. Fixes #274 PiperOrigin-RevId: 309871733
v0.0-374-g90dcd58: Provide lexicographical comparator for SyntaxTreePath.
This will be used to construct column schemas in aligned formatting. PiperOrigin-RevId: 309828987
v0.0-370-g2c98e20: PR #283: System calls such as $display and $sformat fail if encrypted
This patch recognizes a SystemTFIdentifier and turns off encryption for that token. Otherwise the obfuscated Verilog cannot be compiled if it contains such calls. GitHub PR https://github.com/google/verible/pull/283 Copybara import of the project: - 095fae5fa2bbb5734e7192aa840a388e0679081d System calls such as and fail if encrypted by Jonathan Kimmitt <[email protected]> - 04a1b60c1dd80ac6654f7ec69aaed14653c90b5a Correct testcases for unencrypted tasks (fixes #282) by Jonathan Kimmitt <[email protected]> Closes #283 fixes #282 PiperOrigin-RevId: 309820780
v0.0-368-g8177dd8: Re-enable git verilog format with fixed installer
Fixes #254 PiperOrigin-RevId: 308901397
v0.0-366-g727375b: Add space between "if (...)" and "{ ... }" (constraints).
fixes #280 PiperOrigin-RevId: 308743898
v0.0-365-g473b64c: Internal change
PiperOrigin-RevId: 308450293
v0.0-364-g5cf83fe: Attach ';' to macro-call statements' partitions.
fixes #278 PiperOrigin-RevId: 308096014
v0.0-363-g47f3270: PR #273: [git] Source diff awk file with absolute path
git-verilog_format.sh uses the script directory to source diff awk file. If the script is called with relative path it cannot source the file correctly as the tool change the directory to the repository top. This commit is to change the path to absolute path so that wherever the script is called inside repo top, it can source the awk file. GitHub PR https://github.com/google/verible/pull/273 Copybara import of the project: - 82b552d1af732f4adbab1dcd4ff0d6924659efaf [git] Source diff awk file with absolute path by Eunchan Kim <[email protected]> Closes #273 issues #206 PiperOrigin-RevId: 307860502
v0.0-353-g598ba93: PR #263: In create-version-header: use less system-specific features.
Using 'date' to format some date only really works with GNU date, so just use the raw time_t timestamp and format that in code. While at it, remove dependency on 'grep'. This will remove one of the problems compiling on Mac, found in #260. Signed-off-by: Henner Zeller <[email protected]> GitHub PR https://github.com/google/verible/pull/263 Copybara import of the project: - 3f52998493423acba2f95786b0cb3339f1ba3e5e In create-version-header: use less system-specific featur... by Henner Zeller <[email protected]> - 36294dfb681929f01688e302b8aff9e92cf7ca21 Improve case ;; by Henner Zeller <[email protected]> Closes #263 PiperOrigin-RevId: 305880225