Skip to content

Releases: chipsalliance/verible

v0.0-378-g8bfe7a7: Add unit-tests for AutoPopStack.

07 May 00:43
Compare
Choose a tag to compare
issues #289

PiperOrigin-RevId: 310247369

v0.0-375-g7d55b5b: Add a simple way to ignore #-comments in lint configuration files.

05 May 05:14
Compare
Choose a tag to compare
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.

05 May 00:28
Compare
Choose a tag to compare
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

04 May 22:52
Compare
Choose a tag to compare
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

28 Apr 22:33
Compare
Choose a tag to compare

v0.0-366-g727375b: Add space between "if (...)" and "{ ... }" (constraints).

28 Apr 22:26
Compare
Choose a tag to compare

v0.0-365-g473b64c: Internal change

28 Apr 22:26
Compare
Choose a tag to compare
PiperOrigin-RevId: 308450293

v0.0-364-g5cf83fe: Attach ';' to macro-call statements' partitions.

24 Apr 21:12
Compare
Choose a tag to compare

v0.0-363-g47f3270: PR #273: [git] Source diff awk file with absolute path

22 Apr 19:14
Compare
Choose a tag to compare
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.

10 Apr 16:09
Compare
Choose a tag to compare
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