Skip to content

Commit

Permalink
Sync NEWS.md from 1.14 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nickg committed Nov 23, 2024
1 parent ca77c36 commit 2d8f452
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ release: update-test-dist
)

sync-branch:
head -n1 $(top_srcdir)/configure.ac | grep -q \\-devel || exit 1; \
last=$$(awk '/## Version/ { print($$3); exit }' $(top_srcdir)/NEWS.md); \
branch=origin/v$$(echo $$last | sed 's/.[0-9]$$//')-branch; \
echo "last version was $$last, branch $$branch"; \
Expand Down
20 changes: 11 additions & 9 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,10 @@
coverage bin must reach to be reported as covered.
- Added a warning for potential infinite loops in processes without
sensitivity and lacking any wait statements (from @NikLeberg).
- Fixed a crash when `'last_value` is used with record types (#1043).
- Selected names can now be to register value change callbacks with
`vhpi_register_cb` (#1045).
- Removed the limit on the maximum number of parameters that can be
passed to a VHDL subprogram (#1036).
- Fixed a crash when a process sensitivity list contains an external
name and the process is elaborated before the object referenced by the
name (#1062).
- Fixed parser hang for integers in scientific notation (from
@NikLeberg).
- The new `--no-save` analysis option parses and checks the input files
but does not save the working library to disk. This is a replacement
for the `--syntax` top-level command which is now deprecated.
Expand All @@ -32,19 +26,27 @@
new `--cover-file=` elaboration option. Attempts to access the old
file name inside the library directory will be redirected to the new
location, with a warning.
- Fixed a platform detection issue that caused JIT code loading to fail
on Apple silicon macOS (#1069).
- Partial association of ports with interface views now works correctly
(#1074).
- Added support for PSL suffix implication, SERE repetition, and SERE
fusion.
- Nested arrays more than two levels deep can now be dumped in FST
format (#1071).
- Several other minor bugs were resolved (#1038, #1057, #1067).

## Version 1.14.2 - 2024-11-23
- Fixed a crash when `'last_value` is used with record types (#1043).
- Fixed a crash when a process sensitivity list contains an external
name and the process is elaborated before the object referenced by the
name (#1062).
- Fixed parser hang for integers in scientific notation (from @NikLeberg).
- Fixed a platform detection issue that caused JIT code loading to fail
on Apple silicon macOS (#1069).
- The `STD_INPUT` and `STD_OUTPUT` files can now be opened and closed
multiple times (#1079).
- Fixed a crash when a subtype is used for an aggregate element
association range choice which associates an array slice (#1080).
- Several other minor bugs were resolved (#1038, #1055, #1057, #1067).
- Several other minor bugs were resolved (#1038, #1055).

## Version 1.14.1 - 2024-10-26
- Fixed an error when using the `work` library alias and the working
Expand Down
6 changes: 3 additions & 3 deletions www/defs.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
define(__version, `1.14.1')dnl
define(__release_date, `26th October 2024')dnl
define(__release_date_short, `2024-10-26')dnl
define(__version, `1.14.2')dnl
define(__release_date, `23rd November 2024')dnl
define(__release_date_short, `2024-11-23')dnl
define(__release_notes, `news.html#version-'__version`---'__release_date_short)dnl
define(__github_url, `https://github.com/nickg/nvc')dnl
define(__download_base, `https://www.nickg.me.uk/files')dnl
Expand Down

0 comments on commit 2d8f452

Please sign in to comment.