From 0b53931c792cc5d093cd51fdc7472a3296246137 Mon Sep 17 00:00:00 2001 From: nick black Date: Thu, 9 Jan 2025 03:17:42 -0500 Subject: [PATCH] v3.0.12 --- CMakeLists.txt | 2 +- NEWS.md | 3 ++- cffi/notcurses-pydemo.1.md | 2 +- cffi/setup.py | 2 +- doc/Doxyfile | 2 +- doc/man/index.html | 2 +- doc/man/man1/ncls.1.md | 2 +- doc/man/man1/ncneofetch.1.md | 2 +- doc/man/man1/ncplayer.1.md | 2 +- doc/man/man1/nctetris.1.md | 2 +- doc/man/man1/notcurses-demo.1.md | 2 +- doc/man/man1/notcurses-info.1.md | 2 +- doc/man/man1/notcurses-input.1.md | 2 +- doc/man/man1/notcurses-tester.1.md | 2 +- doc/man/man1/tfman.1.md | 2 +- doc/man/man3/notcurses.3.md | 2 +- doc/man/man3/notcurses_capabilities.3.md | 2 +- doc/man/man3/notcurses_cell.3.md | 2 +- doc/man/man3/notcurses_channels.3.md | 2 +- doc/man/man3/notcurses_core.3.md | 2 +- doc/man/man3/notcurses_direct.3.md | 2 +- doc/man/man3/notcurses_fade.3.md | 2 +- doc/man/man3/notcurses_fds.3.md | 2 +- doc/man/man3/notcurses_init.3.md | 2 +- doc/man/man3/notcurses_input.3.md | 2 +- doc/man/man3/notcurses_lines.3.md | 2 +- doc/man/man3/notcurses_menu.3.md | 2 +- doc/man/man3/notcurses_metric.3.md | 2 +- doc/man/man3/notcurses_multiselector.3.md | 2 +- doc/man/man3/notcurses_output.3.md | 2 +- doc/man/man3/notcurses_palette.3.md | 2 +- doc/man/man3/notcurses_pile.3.md | 2 +- doc/man/man3/notcurses_plane.3.md | 2 +- doc/man/man3/notcurses_plot.3.md | 2 +- doc/man/man3/notcurses_reader.3.md | 2 +- doc/man/man3/notcurses_reel.3.md | 2 +- doc/man/man3/notcurses_refresh.3.md | 2 +- doc/man/man3/notcurses_render.3.md | 2 +- doc/man/man3/notcurses_selector.3.md | 2 +- doc/man/man3/notcurses_stats.3.md | 2 +- doc/man/man3/notcurses_stdplane.3.md | 2 +- doc/man/man3/notcurses_stop.3.md | 2 +- doc/man/man3/notcurses_tabbed.3.md | 2 +- doc/man/man3/notcurses_tree.3.md | 2 +- doc/man/man3/notcurses_util.3.md | 2 +- doc/man/man3/notcurses_visual.3.md | 2 +- python/setup.py | 2 +- src/libffi/ffi.c | 2 ++ tools/notcurses-installer.ifp | 4 ++-- tools/nuspec | 2 +- 50 files changed, 53 insertions(+), 50 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 15fca50d6..14bd0919b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # 3.14.0 introduced NAME_WLE cmake_minimum_required(VERSION 3.14.0) -project(notcurses VERSION 3.0.11 +project(notcurses VERSION 3.0.12 DESCRIPTION "Blingful UI for modern terminal emulators" HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses" LANGUAGES C) diff --git a/NEWS.md b/NEWS.md index b45384e8e..1961919cc 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,7 +1,7 @@ This document attempts to list user-visible changes and any major internal rearrangements of Notcurses. -* 3.0.12 (not yet released) +* 3.0.12 (2025-01-09) * Fixed a bug when rendering QR codes into a small area. QR codes now require `NCBLIT_2x1`, as that is the only blitter which can generate a proper aspect ratio. It thus no longer works in an ASCII environment. @@ -11,6 +11,7 @@ rearrangements of Notcurses. used for `NCBLIT_DEFAULT` when used with `NCSCALE_NONE_HIRES`, `NCSCALE_SCALE_HIRES`, or `NCSCALE_STRETCH`. Thanks, eschnett! Note that octants are not supported by GNU libc until 2.41. + * Fixed coredump on exit when using musl as libc (alpine, some gentoo). * 3.0.11 (2024-10-02) * We now normalize the return of `nl_langinfo()` according to the behavior diff --git a/cffi/notcurses-pydemo.1.md b/cffi/notcurses-pydemo.1.md index 88bf1ad74..0719f4aa9 100644 --- a/cffi/notcurses-pydemo.1.md +++ b/cffi/notcurses-pydemo.1.md @@ -1,6 +1,6 @@ % notcurses-pydemo(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/cffi/setup.py b/cffi/setup.py index 0dcd2f479..d0577e6da 100644 --- a/cffi/setup.py +++ b/cffi/setup.py @@ -49,7 +49,7 @@ def run(self): setup( name="notcurses", - version="3.0.11", + version="3.0.12", packages=['notcurses'], scripts=['notcurses-pydemo', 'ncdirect-pydemo'], package_dir={'': 'src'}, diff --git a/doc/Doxyfile b/doc/Doxyfile index ff083ee94..51181a52b 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Notcurses # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 3.0.11 +PROJECT_NUMBER = 3.0.12 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/doc/man/index.html b/doc/man/index.html index 74334446a..c2754c5ff 100644 --- a/doc/man/index.html +++ b/doc/man/index.html @@ -38,7 +38,7 @@ -

notcurses manual pages (v3.0.11)

+

notcurses manual pages (v3.0.12)

notcurses(3)—a blingful TUI library

Executables (section 1)

ncls—list files, displaying multimedia along with them
diff --git a/doc/man/man1/ncls.1.md b/doc/man/man1/ncls.1.md index 23ddad924..94098675c 100644 --- a/doc/man/man1/ncls.1.md +++ b/doc/man/man1/ncls.1.md @@ -1,6 +1,6 @@ % ncls(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man1/ncneofetch.1.md b/doc/man/man1/ncneofetch.1.md index 20d3c339d..db0b29c39 100644 --- a/doc/man/man1/ncneofetch.1.md +++ b/doc/man/man1/ncneofetch.1.md @@ -1,6 +1,6 @@ % ncneofetch(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man1/ncplayer.1.md b/doc/man/man1/ncplayer.1.md index cd877c5a3..5882ae6fb 100644 --- a/doc/man/man1/ncplayer.1.md +++ b/doc/man/man1/ncplayer.1.md @@ -1,6 +1,6 @@ % ncplayer(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man1/nctetris.1.md b/doc/man/man1/nctetris.1.md index c4ec9881b..bece089a6 100644 --- a/doc/man/man1/nctetris.1.md +++ b/doc/man/man1/nctetris.1.md @@ -1,6 +1,6 @@ % nctetris(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man1/notcurses-demo.1.md b/doc/man/man1/notcurses-demo.1.md index e95008b8d..668632497 100644 --- a/doc/man/man1/notcurses-demo.1.md +++ b/doc/man/man1/notcurses-demo.1.md @@ -1,6 +1,6 @@ % notcurses-demo(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man1/notcurses-info.1.md b/doc/man/man1/notcurses-info.1.md index ac75451ac..aa34d5e48 100644 --- a/doc/man/man1/notcurses-info.1.md +++ b/doc/man/man1/notcurses-info.1.md @@ -1,6 +1,6 @@ % notcurses-info(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man1/notcurses-input.1.md b/doc/man/man1/notcurses-input.1.md index 5f97290dc..5f9d4f8a7 100644 --- a/doc/man/man1/notcurses-input.1.md +++ b/doc/man/man1/notcurses-input.1.md @@ -1,6 +1,6 @@ % notcurses-input(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man1/notcurses-tester.1.md b/doc/man/man1/notcurses-tester.1.md index b1a8dde1b..f331886ff 100644 --- a/doc/man/man1/notcurses-tester.1.md +++ b/doc/man/man1/notcurses-tester.1.md @@ -1,6 +1,6 @@ % notcurses-tester(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man1/tfman.1.md b/doc/man/man1/tfman.1.md index f76063bc5..4b6d0dc29 100644 --- a/doc/man/man1/tfman.1.md +++ b/doc/man/man1/tfman.1.md @@ -1,6 +1,6 @@ % tfman(1) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses.3.md b/doc/man/man3/notcurses.3.md index 816aaca17..0ec752b0b 100644 --- a/doc/man/man3/notcurses.3.md +++ b/doc/man/man3/notcurses.3.md @@ -1,6 +1,6 @@ % notcurses(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_capabilities.3.md b/doc/man/man3/notcurses_capabilities.3.md index 7493c3d58..4f769e3af 100644 --- a/doc/man/man3/notcurses_capabilities.3.md +++ b/doc/man/man3/notcurses_capabilities.3.md @@ -1,6 +1,6 @@ % notcurses_capabilities(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_cell.3.md b/doc/man/man3/notcurses_cell.3.md index c2a893ea0..ab925afc6 100644 --- a/doc/man/man3/notcurses_cell.3.md +++ b/doc/man/man3/notcurses_cell.3.md @@ -1,6 +1,6 @@ % notcurses_cell(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_channels.3.md b/doc/man/man3/notcurses_channels.3.md index 18853d86f..f8c9d3797 100644 --- a/doc/man/man3/notcurses_channels.3.md +++ b/doc/man/man3/notcurses_channels.3.md @@ -1,6 +1,6 @@ % notcurses_channels(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_core.3.md b/doc/man/man3/notcurses_core.3.md index 30e3f825b..63a785dd8 100644 --- a/doc/man/man3/notcurses_core.3.md +++ b/doc/man/man3/notcurses_core.3.md @@ -1,6 +1,6 @@ % notcurses_core(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_direct.3.md b/doc/man/man3/notcurses_direct.3.md index 207778322..1eca355fb 100644 --- a/doc/man/man3/notcurses_direct.3.md +++ b/doc/man/man3/notcurses_direct.3.md @@ -1,6 +1,6 @@ % notcurses_direct(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_fade.3.md b/doc/man/man3/notcurses_fade.3.md index d512139be..b832f0289 100644 --- a/doc/man/man3/notcurses_fade.3.md +++ b/doc/man/man3/notcurses_fade.3.md @@ -1,6 +1,6 @@ % notcurses_fade(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_fds.3.md b/doc/man/man3/notcurses_fds.3.md index 88f6576d3..96125d75e 100644 --- a/doc/man/man3/notcurses_fds.3.md +++ b/doc/man/man3/notcurses_fds.3.md @@ -1,6 +1,6 @@ % notcurses_fds(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_init.3.md b/doc/man/man3/notcurses_init.3.md index 9c969b6d0..8784de62e 100644 --- a/doc/man/man3/notcurses_init.3.md +++ b/doc/man/man3/notcurses_init.3.md @@ -1,6 +1,6 @@ % notcurses_init(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_input.3.md b/doc/man/man3/notcurses_input.3.md index 1bc6ae59e..2215ad259 100644 --- a/doc/man/man3/notcurses_input.3.md +++ b/doc/man/man3/notcurses_input.3.md @@ -1,6 +1,6 @@ % notcurses_input(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_lines.3.md b/doc/man/man3/notcurses_lines.3.md index 7fd6bee19..43f4f5151 100644 --- a/doc/man/man3/notcurses_lines.3.md +++ b/doc/man/man3/notcurses_lines.3.md @@ -1,6 +1,6 @@ % notcurses_lines(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_menu.3.md b/doc/man/man3/notcurses_menu.3.md index 45b8afd27..7098a7307 100644 --- a/doc/man/man3/notcurses_menu.3.md +++ b/doc/man/man3/notcurses_menu.3.md @@ -1,6 +1,6 @@ % notcurses_menu(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_metric.3.md b/doc/man/man3/notcurses_metric.3.md index 9dbd12ecc..f52fb2519 100644 --- a/doc/man/man3/notcurses_metric.3.md +++ b/doc/man/man3/notcurses_metric.3.md @@ -1,6 +1,6 @@ % notcurses_metric(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_multiselector.3.md b/doc/man/man3/notcurses_multiselector.3.md index 6630a0841..16dac72d9 100644 --- a/doc/man/man3/notcurses_multiselector.3.md +++ b/doc/man/man3/notcurses_multiselector.3.md @@ -1,6 +1,6 @@ % notcurses_multiselector(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_output.3.md b/doc/man/man3/notcurses_output.3.md index c7d45a5f7..c74f9a2a2 100644 --- a/doc/man/man3/notcurses_output.3.md +++ b/doc/man/man3/notcurses_output.3.md @@ -1,6 +1,6 @@ % notcurses_output(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_palette.3.md b/doc/man/man3/notcurses_palette.3.md index 1a4781bc9..9e8b7e634 100644 --- a/doc/man/man3/notcurses_palette.3.md +++ b/doc/man/man3/notcurses_palette.3.md @@ -1,6 +1,6 @@ % notcurses_palette(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_pile.3.md b/doc/man/man3/notcurses_pile.3.md index ca56813c2..a4d2ed3b7 100644 --- a/doc/man/man3/notcurses_pile.3.md +++ b/doc/man/man3/notcurses_pile.3.md @@ -1,6 +1,6 @@ % notcurses_pile(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_plane.3.md b/doc/man/man3/notcurses_plane.3.md index f9047d583..4f73a6ad2 100644 --- a/doc/man/man3/notcurses_plane.3.md +++ b/doc/man/man3/notcurses_plane.3.md @@ -1,6 +1,6 @@ % notcurses_plane(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_plot.3.md b/doc/man/man3/notcurses_plot.3.md index fef84d58f..4c7084010 100644 --- a/doc/man/man3/notcurses_plot.3.md +++ b/doc/man/man3/notcurses_plot.3.md @@ -1,6 +1,6 @@ % notcurses_plot(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_reader.3.md b/doc/man/man3/notcurses_reader.3.md index 69ed7683b..5f9f99d50 100644 --- a/doc/man/man3/notcurses_reader.3.md +++ b/doc/man/man3/notcurses_reader.3.md @@ -1,6 +1,6 @@ % notcurses_reader(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_reel.3.md b/doc/man/man3/notcurses_reel.3.md index f7a262f40..15d0ac391 100644 --- a/doc/man/man3/notcurses_reel.3.md +++ b/doc/man/man3/notcurses_reel.3.md @@ -1,6 +1,6 @@ % notcurses_reel(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_refresh.3.md b/doc/man/man3/notcurses_refresh.3.md index 9b5f50fe5..91f4f014d 100644 --- a/doc/man/man3/notcurses_refresh.3.md +++ b/doc/man/man3/notcurses_refresh.3.md @@ -1,6 +1,6 @@ % notcurses_refresh(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_render.3.md b/doc/man/man3/notcurses_render.3.md index 91db42c97..86a3d0dd3 100644 --- a/doc/man/man3/notcurses_render.3.md +++ b/doc/man/man3/notcurses_render.3.md @@ -1,6 +1,6 @@ % notcurses_render(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_selector.3.md b/doc/man/man3/notcurses_selector.3.md index c34f2dfb1..6c9857b82 100644 --- a/doc/man/man3/notcurses_selector.3.md +++ b/doc/man/man3/notcurses_selector.3.md @@ -1,6 +1,6 @@ % notcurses_selector(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_stats.3.md b/doc/man/man3/notcurses_stats.3.md index 64f24f1f4..a73f77834 100644 --- a/doc/man/man3/notcurses_stats.3.md +++ b/doc/man/man3/notcurses_stats.3.md @@ -1,6 +1,6 @@ % notcurses_stats(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_stdplane.3.md b/doc/man/man3/notcurses_stdplane.3.md index 591baca15..a7bcb426d 100644 --- a/doc/man/man3/notcurses_stdplane.3.md +++ b/doc/man/man3/notcurses_stdplane.3.md @@ -1,6 +1,6 @@ % notcurses_stdplane(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_stop.3.md b/doc/man/man3/notcurses_stop.3.md index 40fc50197..86c040a96 100644 --- a/doc/man/man3/notcurses_stop.3.md +++ b/doc/man/man3/notcurses_stop.3.md @@ -1,6 +1,6 @@ % notcurses_stop(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_tabbed.3.md b/doc/man/man3/notcurses_tabbed.3.md index ca686b0b3..e709ca0b0 100644 --- a/doc/man/man3/notcurses_tabbed.3.md +++ b/doc/man/man3/notcurses_tabbed.3.md @@ -1,5 +1,5 @@ % notcurses_tabbed(3) -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_tree.3.md b/doc/man/man3/notcurses_tree.3.md index c6745d7cb..6c00529e9 100644 --- a/doc/man/man3/notcurses_tree.3.md +++ b/doc/man/man3/notcurses_tree.3.md @@ -1,6 +1,6 @@ % notcurses_tree(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_util.3.md b/doc/man/man3/notcurses_util.3.md index 6bf914ea5..0070a51e4 100644 --- a/doc/man/man3/notcurses_util.3.md +++ b/doc/man/man3/notcurses_util.3.md @@ -1,6 +1,6 @@ % notcurses_util(3) % nick black -% v3.0.11 +% v3.0.12 # NAME diff --git a/doc/man/man3/notcurses_visual.3.md b/doc/man/man3/notcurses_visual.3.md index 77abfd575..4885915a1 100644 --- a/doc/man/man3/notcurses_visual.3.md +++ b/doc/man/man3/notcurses_visual.3.md @@ -1,6 +1,6 @@ % notcurses_visual(3) % nick black -% v3.0.11 +% v3.0.12 # NAME notcurses_visual - notcurses multimedia diff --git a/python/setup.py b/python/setup.py index 4600b2f51..2926542dd 100644 --- a/python/setup.py +++ b/python/setup.py @@ -38,7 +38,7 @@ setup( name="notcurses", - version="3.0.11", + version="3.0.12", packages=['notcurses'], ext_modules=[ Extension( diff --git a/src/libffi/ffi.c b/src/libffi/ffi.c index 7bb3f3582..b108e4bde 100644 --- a/src/libffi/ffi.c +++ b/src/libffi/ffi.c @@ -28,6 +28,7 @@ bool ncdirect_canbraille(const struct ncdirect* nc); bool ncdirect_canchangecolor(const struct ncdirect* n); bool ncdirect_canfade(const struct ncdirect* n); bool ncdirect_canhalfblock(const struct ncdirect* nc); +bool ncdirect_canoctant(const struct ncdirect* nc); bool ncdirect_canopen_images(const struct ncdirect* n __attribute__ ((unused))); bool ncdirect_canopen_videos(const struct ncdirect* n __attribute__ ((unused))); bool ncdirect_canquadrant(const struct ncdirect* nc); @@ -54,6 +55,7 @@ bool notcurses_canbraille(const struct notcurses* nc); bool notcurses_canchangecolor(const struct notcurses* nc); bool notcurses_canfade(const struct notcurses* n); bool notcurses_canhalfblock(const struct notcurses* nc); +bool notcurses_canoctant(const struct notcurses* nc); bool notcurses_canpixel(const struct notcurses* nc); bool notcurses_canquadrant(const struct notcurses* nc); bool notcurses_cansextant(const struct notcurses* nc); diff --git a/tools/notcurses-installer.ifp b/tools/notcurses-installer.ifp index 307d56067..d7db5feb8 100644 --- a/tools/notcurses-installer.ifp +++ b/tools/notcurses-installer.ifp @@ -3,7 +3,7 @@ ProjectFileVersion = 1.1 [General] Program name = Notcurses -Program version = 3.0.11 +Program version = 3.0.12 Windows 2000 = 0 Windows XP = 0 Windows Server 2003 = 0 @@ -55,7 +55,7 @@ Time = 2 PlaySound = 0 Allow = 0 [Build] -File = C:\msys64\home\niblack\src\notcurses\notcurses-3.0.11.exe +File = C:\msys64\home\niblack\src\notcurses\notcurses-3.0.12.exe SetupIconPath = C:\msys64\home\niblack\src\notcurses\doc\icon.ico UninstallIconPath = C:\msys64\home\niblack\src\notcurses\doc\icon.ico CompressionMethod = 0 diff --git a/tools/nuspec b/tools/nuspec index 38d40083f..6a82765e0 100644 --- a/tools/nuspec +++ b/tools/nuspec @@ -3,7 +3,7 @@ Notcurses - 3.0.11 + 3.0.12 Notcurses TUI/CLI library Library for blingful TUIs and character graphics nick black