From a508bd6cae7e91c2ae5844693fb8ebb885685484 Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Mon, 1 May 2023 10:01:46 +0100 Subject: [PATCH] Bump version to 1.9.2 --- NEWS.md | 6 ++++-- configure.ac | 2 +- test/dist.mk | 7 +++++++ www/defs.m4 | 6 +++--- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/NEWS.md b/NEWS.md index a06c6063..c7138e30 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,10 +1,12 @@ ## Unreleased changes + +## Version 1.9.2 - 2023-05-01 - Fix elaboration errors with recursive entity instantiation (#668). - Updated to latest GtkWave FST writer library. - Fix crash when an external name is used in a wait expression (#674). - Fix stack corruption when passing large numbers of arguments (#665). -- Protected procedure calls with `out` or `inout` or signal arguments - now create drivers (#675). +- Protected procedure calls with `out` or `inout` signal arguments now + create drivers (#675). - Fixed a crash when a `next` or `exit` statement appears inside `process (all)` (#676). - The `--jit` elaboration options now works on Intel Macs (#680). diff --git a/configure.ac b/configure.ac index ef6e7513..8882c0f6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([nvc], [1.9.1], +AC_INIT([nvc], [1.9.2], [Nick Gasson ], [nvc], [https://github.com/nickg/nvc]) diff --git a/test/dist.mk b/test/dist.mk index f306eab0..2acf981c 100644 --- a/test/dist.mk +++ b/test/dist.mk @@ -676,6 +676,8 @@ EXTRA_DIST += \ test/regress/elab34.vhd \ test/regress/elab35.vhd \ test/regress/elab36.vhd \ + test/regress/elab37.vhd \ + test/regress/elab38.vhd \ test/regress/elab3.vhd \ test/regress/elab4.vhd \ test/regress/elab5.vhd \ @@ -1081,6 +1083,11 @@ EXTRA_DIST += \ test/regress/issue655.vhd \ test/regress/issue668.vhd \ test/regress/issue670.vhd \ + test/regress/issue674.vhd \ + test/regress/issue675.vhd \ + test/regress/issue676.vhd \ + test/regress/issue677.vhd \ + test/regress/issue681.vhd \ test/regress/issue69.vhd \ test/regress/issue70.vhd \ test/regress/issue72.vhd \ diff --git a/www/defs.m4 b/www/defs.m4 index 5556d6d9..432f43a2 100644 --- a/www/defs.m4 +++ b/www/defs.m4 @@ -1,6 +1,6 @@ -define(__version, `1.9.1')dnl/ -define(__release_date, `15th April 2023')dnl/ -define(__release_date_short, `2023-04-15')dnl/ +define(__version, `1.9.2')dnl/ +define(__release_date, `1st May 2023')dnl/ +define(__release_date_short, `2023-05-01')dnl/ define(__release_notes, `news.html#version-'__version`---'__release_date_short)dnl define(__github_url, `https://github.com/nickg/nvc')dnl define(__sourcehut_url, `https://git.sr.ht/~nickg/nvc')dnl -- 2.39.2