From 74906f2b0f437aadbd4b6c51f2358118a5f32f70 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 10 Dec 2023 12:31:41 +0100 Subject: [PATCH] [NEWS] 0.17.0rc2 --- NEWS | 11 ++++++++++- configure.ac | 2 +- meson.build | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 298276984..e485eff38 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,15 @@ 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.17.0rc2 +---------------- + +Released on 2023-12-10 + +* Avoid division by zero. Refs #276 +* Fix for FSP under Windows + + ELinks 0.17.0rc1 ---------------- @@ -23,7 +32,7 @@ Released on 2023-12-02 set protocol.http.use_curl = 1 for http/https * ui.sessions.postpone_unlink option. Delete temporary files at exit instead of immediately after closing viewer #257 -* redefined isspace to #249 +* redefined isspace #249 * Serbian translation update * compilation fixes diff --git a/configure.ac b/configure.ac index 650e96ab6..96781984c 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.17.0rc1 +VERSION=0.17.0rc2 AC_SUBST(PACKAGE) AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version]) diff --git a/meson.build b/meson.build index 84097cd16..baf1d04f5 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('elinks', ['c','cpp'], version:'0.17.0rc1', license:'GPLv2', default_options:['cpp_std=gnu++17']) +project('elinks', ['c','cpp'], version:'0.17.0rc2', license:'GPLv2', default_options:['cpp_std=gnu++17']) srcs=[] srcdir = meson.source_root()