Skip to content

Commit

Permalink
Update for 1.14.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nickg committed Sep 22, 2024
1 parent 547cd87 commit 68fa663
Show file tree
Hide file tree
Showing 7 changed files with 155 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ release: update-test-dist
-e "/define(__release_date,/cdefine(__release_date, \`$$n $$l')dnl" \
-e "/define(__release_date_short,/cdefine(__release_date_short, \`$$d')dnl" \
$(top_srcdir)/www/defs.m4; \
sed -i 's/'$$last'/'$$v'/g' $(top_srcdir)/README.md \
sed -i 's/'$$last'/'$$v'/g' $(top_srcdir)/README.md; \
$(MAKE) -C $(top_builddir) distcheck; \
gpg -b $(top_builddir)/$(PACKAGE)-$(VERSION).tar.gz \
)
Expand Down
10 changes: 5 additions & 5 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
## Unreleased changes
- Coverage bins in coverage exclude file are now part of the exclude
command hierarchy.
- FSM state coverage bin name renamed from STATE to BIN_STATE.
- All coverage bins are now counters saturating at 2147483647.

## Version 1.14.0 - 2024-09-22
- Waiting on implicit `'stable` and `'quiet` signals now works
correctly.
- Updated to OSVVM 2024.07 and UVVM 2024.07.03b for `nvc --install`.
Expand All @@ -15,7 +13,9 @@
coverage database file instead of a top-level unit name.
- The `--force-init` command which was deprecated in the 1.7 release has
been removed.
- Coverage exclude files now support `fold` command.
- Coverage exclude files now support `fold` command to merge coverage
data from independent sub-hierarchies (from @Blebowski).
- FSM state coverage bin renamed from STATE to BIN_STATE.
- A signature is now allowed in the formal part of generic map
associations in VHDL-2019 mode.
- `use lib.pack.all` no longer makes the bare package name `pack`
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([nvc], [1.14-devel],
AC_INIT([nvc], [1.14.0],
[https://github.com/nickg/nvc/issues],
[nvc],
[https://www.nickg.me.uk/nvc/])
Expand Down
2 changes: 1 addition & 1 deletion test/Makemodule.am
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ update-test-dist:
echo "EXTRA_DIST += \\" ; \
cd $(top_srcdir) ; \
git ls-files -- 'test/*.vhd' 'test/*.txt' 'test/*.sh' 'test/*.dump' \
'test/*.gtkw' 'test/*.tcl' 'test/*.v' 'test/*.xml' \
'test/*.gtkw' 'test/*.tcl' 'test/*.v' 'test/*.xml' 'test/*.sdf' \
| sort | sed -e 's/^/\t/' -e '$$ ! s/$$/ \\/' ; \
) > $(top_srcdir)/test/dist.mk

Expand Down
Loading

0 comments on commit 68fa663

Please sign in to comment.