From 831ededb528674dde74819795af6db62c99cc8c0 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sat, 7 Dec 2024 08:10:25 +0100 Subject: [PATCH] [NEWS] 0.18.0rc1 --- NEWS | 21 +++++++++++++++++++++ configure.ac | 2 +- meson.build | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 2e76e1853..aa15ef2a2 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,27 @@ You can see the complete list of recent changes, bugfixes and new features in the https://github.com/rkd77/felinks.git[gitweb interface]. See the ChangeLog file for details. +ELinks 0.18.0rc1 +---------------- + +Released on 2024-12-07 + +* drop combining compile time option +* bump mozjs dependency to 128 +* console.assert (and extension console.exit) +* test option for testing js code +* added document.scripting_sleep_on_error option #319 +* skip hidden elements #341 +* fix linking -lexecinfo #337 +* Serbian translation update +* Polish translation update +* detect if gettext has _nl_msg_cat_cntr #325 +* added reopen-last-closed-tab action #309 +* added options for memory limits of Spidermonkey and QuickJS +* gemini input #121 +* compilation fixes + + ELinks 0.17.1.1 --------------- diff --git a/configure.ac b/configure.ac index 2edc0285a..2e5863ea4 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR([config/m4]) PACKAGE=elinks -VERSION=0.18.GIT +VERSION=0.18.0rc1 AC_SUBST(PACKAGE) AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version]) diff --git a/meson.build b/meson.build index c27051386..9a3ce7a43 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('elinks', ['c','cpp'], version:'0.18.GIT', license:'GPLv2', default_options:['cpp_std=gnu++17'], meson_version:'>=1.0.1') +project('elinks', ['c','cpp'], version:'0.18.0rc1', license:'GPLv2', default_options:['cpp_std=gnu++17'], meson_version:'>=1.0.1') srcs=[] srcdir = meson.project_source_root()