Skip to content

Releases: chipsalliance/verible

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

v0.0-350-g241da92: PR #261: Add cstddef include to fix nullptr_t reference

09 Apr 02:15
Compare
Choose a tag to compare
issues #260

GitHub PR https://github.com/google/verible/pull/261

Copybara import of the project:

  - 9ee01e3b5e00229c84196652a4acb640a22defda add cstddef inlcude to fix nullptr reference by Alexander Mann <[email protected]>
  - 7c0d806b877fc9901747e33b37618772adf1291e change nullptr_t to std::nullptr_t by Alexander Mann <[email protected]>

Closes #261

PiperOrigin-RevId: 305597016

v0.0-346-g22f6630: Handle case where first token of a partition is multi-line.

07 Apr 01:00
Compare
Choose a tag to compare

v0.0-344-ga4c46f2: Disable install rule which doesn't work right now.

05 Apr 22:38
Compare
Choose a tag to compare

v0.0-332-g5e1e006: Use C++11 compatible version of static_assert; before

02 Apr 19:58
Compare
Choose a tag to compare
C++17 the second message parameter to static_assert was
not optional.

Some particularly old compiler (gcc-5) was having trouble
https://travis-ci.org/github/google/verible/jobs/669946250#L1428

PiperOrigin-RevId: 304449377

v0.0-331-g5d7fe52: Factor out DisableSyntaxBasedRanges() subroutine.

02 Apr 01:31
Compare
Choose a tag to compare
Shortening main formatting function for readability.

PiperOrigin-RevId: 304297805

v0.0-320-g2cad9a0: Allow identifier-like symbols for the import alias name.

30 Mar 22:00
Compare
Choose a tag to compare
Fixes crash in verilog::MakeDPIImport() with signature like:
  Check failed: E(leaf.get().token_enum) == expected_token_enum (293 vs. 292)

PiperOrigin-RevId: 303818326

v0.0-310-ga9d1b64: Lint: Make acceptance of anonymous nested structs configurable.

24 Mar 21:29
Compare
Choose a tag to compare
This adds 'allow_anonymous_nested' configuration to the 'typedef-structs-unions'
rule to allow not to require a typedef for inner structs.

In the course of that, implement SyntaxTreeContext::IsInsideStartingFrom()
which starts looking backward the stack starting with an offset.

(As a side effect, make IsInside() to start looking from top of stack
instead of bottom, which is conceptually more aligned of what we expect,
even though it makes only a difference in this case (offset 0))

Fixes #128

PiperOrigin-RevId: 302738764

v0.0-309-g6b58e8f: Fix compile on C++11; fix missing include.

24 Mar 20:43
Compare
Choose a tag to compare