Skip to content

Commit b8c169d

Browse files
committed
Sync NEWS.md from 1.11 branch
1 parent ab9020d commit b8c169d

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

NEWS.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
- Fixed a crash when subtype bounds depend on a package instance generic
44
(#815).
55

6+
## Version 1.11.2 - 2024-01-04
7+
- Fixed an incorrect length check in the equivalent process for
8+
non-static port map actuals (#817).
9+
- Library file names for design units that contain extended identifiers
10+
such as `/Foo/` are now encoded in a way that avoids illegal
11+
characters and case sensitivity issues on Windows and macOS (#816).
12+
- Implemented `vhpiIsNullP` and `vhpiIsDiscreteP` for ranges.
13+
- Fixed a crash when an aliased enumeration literal appears in a case
14+
choice expression (#819).
15+
- Fixed calculation of longest static prefix with indexes and slices of
16+
a constant array (#820).
17+
- Fixed a crash during elaboration when simplifying an if-statement that
18+
depends on a generate parameter (#821).
19+
- Increased the limit on the number of subprogram arguments to allow
20+
compiling some Lattice IPs (from @sean-anderson-seco).
21+
622
## Version 1.11.1 - 2023-12-16
723
- Fix crash during elaboration when an if-statement branch is always
824
taken (#812).

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ NVC has both a release branch and a development master branch. The
9090
master branch should be stable enough for day-to-day use and has
9191
comprehensive regression tests, but the release branch is more suitable
9292
for third party packaging. The latest released version is
93-
[1.11.1](https://github.com/nickg/nvc/releases/tag/r1.11.1).
93+
[1.11.2](https://github.com/nickg/nvc/releases/tag/r1.11.2).
9494
Significant changes since the last release are detailed in
9595
[NEWS.md](NEWS.md).
9696

THANKS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ following people:
2424
module.
2525

2626
Special thank you to @bpadalino, @tmeissner, @Blebowski, @amb5l,
27-
@m42uko, and @a-panella for sponsoring me!
27+
@m42uko, @a-panella, and @cmarqu for sponsoring me!

www/defs.m4

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
define(__version, `1.11.1')dnl
2-
define(__release_date, `16th December 2023')dnl
3-
define(__release_date_short, `2023-12-16')dnl
1+
define(__version, `1.11.2')dnl
2+
define(__release_date, `4th January 2024')dnl
3+
define(__release_date_short, `2024-01-04')dnl
44
define(__release_notes, `news.html#version-'__version`---'__release_date_short)dnl
55
define(__github_url, `https://github.com/nickg/nvc')dnl
66
define(__sourcehut_url, `https://git.sr.ht/~nickg/nvc')dnl

0 commit comments

Comments
 (0)