Skip to content

Commit

Permalink
Sync NEWS.md from 1.11 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nickg committed Dec 16, 2023
1 parent 92d426a commit 56813ed
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
19 changes: 17 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ include lib/synopsys/Makemodule.am
include contrib/Makemodule.am
include contrib/gui/Makemodule.am

clean-local: clean-test clean-libs

if MAINTAINER_MODE

compile-commands:
$(MAKE) -C $(top_builddir) clean
bear -- $(MAKE) -j$$(nproc) -C $(top_builddir) $(bin_PROGRAMS) \
Expand Down Expand Up @@ -108,7 +112,18 @@ sync-branch:
git checkout $$branch $(top_srcdir)/www/defs.m4; \
sed -i 's/'$$last'/'$$new'/g' $(top_srcdir)/README.md

clean-local: clean-test clean-libs
upload-artifacts:
tag=$$(git describe) && \
gh release upload $$tag $(top_builddir)/$(DIST_ARCHIVES){,.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" && \
mkdir -p /tmp/artifacts && \
gh run download $$run_id --dir /tmp/artifacts && \
find /tmp/artifacts -type f -print -exec gh release upload $$tag \{\} \;

endif # MAINTAINER_MODE

.PHONY: cov-reset cov-report clean-test compile-commands
.PHONY: release sync-branch
.PHONY: release sync-branch upload-artifacts
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Unreleased changes
- The `--jit` elaboration option no longer requires `--no-save`.
- Fixed a crash when subtype bounds depend on a package instance generic
(#815).

## Version 1.11.1 - 2023-12-16
- Fix crash during elaboration when an if-statement branch is always
taken (#812).
- VHPI plugins can now access types in instantiated packages (from
@sean-anderson-seco).
- The `--version` output now includes the bare Git commit SHA if the
program is built from a shallow clone with no tags (#813).

## Version 1.11.0 - 2023-12-06
- New command `--cover-export` exports coverage data in the Cobertura
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0](https://github.com/nickg/nvc/releases/tag/r1.11.0).
[1.11.1](https://github.com/nickg/nvc/releases/tag/r1.11.1).
Significant changes since the last release are detailed in
[NEWS.md](NEWS.md).

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.11.0')dnl
define(__release_date, `6th December 2023')dnl
define(__release_date_short, `2023-12-06')dnl
define(__version, `1.11.1')dnl
define(__release_date, `16th December 2023')dnl
define(__release_date_short, `2023-12-16')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
Expand Down

0 comments on commit 56813ed

Please sign in to comment.