From 7369e674cb5482a28848b429e4b1799ac3377a8f Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Sun, 4 Feb 2024 10:20:14 +0000 Subject: [PATCH] Sync NEWS.md from 1.11 branch --- Makefile.am | 5 +++-- NEWS.md | 12 ++++++++++++ README.md | 2 +- www/defs.m4 | 6 +++--- 4 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4c559187..2ee99eac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -113,12 +113,13 @@ sync-branch: sed -i 's/'$$last'/'$$new'/g' $(top_srcdir)/README.md upload-artifacts: - tag=$$(git describe) && \ - gh release upload $$tag $(top_builddir)/$(DIST_ARCHIVES){,.sig} && \ + tag=$$(git describe --tags $$(git rev-list --tags --max-count=1)) && \ + gh release upload $$tag $(top_builddir)/$(PACKAGE)-$$tag.tar.gz{,.sig} && \ run_id=$$(gh run list -w "Build MSYS2 and Ubuntu packages" \ -L 1 --json headBranch,databaseId \ --jq '.[0] | select(.headBranch == "'$$tag'").databaseId') && \ echo "Run ID : $$run_id" && \ + rm -rf /tmp/artifacts && \ mkdir -p /tmp/artifacts && \ gh run download $$run_id --dir /tmp/artifacts && \ find /tmp/artifacts -type f -print -exec gh release upload $$tag \{\} \; diff --git a/NEWS.md b/NEWS.md index 69a14f56..b056656b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -12,6 +12,18 @@ fixes a number of long-standing issues (#843). - Added support for `inertial` keyword in port maps (#843). +## Version 1.11.3 - 2024-02-04 +- Fixed incorrect effective value when a signal has multiple sources due + to port-collapsing optimisation (#824). +- Signals that appear in aggregate choice expressions like `(S downto 0 + => '0')` are now included in the sensitivity list for concurrent + statement equivalent processes, and in `process (all)` (#825). +- The direction of aggregates with range choices is now calculated + correctly in VHDL-2008 mode (#826). +- Fixed a memory corruption bug when evaluating certain aggregates that + contain a range association (#827). +- Resolved several other minor issues (#837, #839, #840). + ## Version 1.11.2 - 2024-01-04 - Fixed an incorrect length check in the equivalent process for non-static port map actuals (#817). diff --git a/README.md b/README.md index ac1ecbf3..e84971f7 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ NVC has both a release branch and a development master branch. The master branch should be stable enough for day-to-day use and has comprehensive regression tests, but the release branch is more suitable for third party packaging. The latest released version is -[1.11.2](https://github.com/nickg/nvc/releases/tag/r1.11.2). +[1.11.3](https://github.com/nickg/nvc/releases/tag/r1.11.3). Significant changes since the last release are detailed in [NEWS.md](NEWS.md). diff --git a/www/defs.m4 b/www/defs.m4 index 286e9675..15168c3e 100644 --- a/www/defs.m4 +++ b/www/defs.m4 @@ -1,6 +1,6 @@ -define(__version, `1.11.2')dnl -define(__release_date, `4th January 2024')dnl -define(__release_date_short, `2024-01-04')dnl +define(__version, `1.11.3')dnl +define(__release_date, `4th February 2024')dnl +define(__release_date_short, `2024-02-04')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