diff --git a/NEWS b/NEWS index c5059ea6..82755201 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,14 @@ 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.14.3 +------------- + +Released on 2021-09-26 + +* Fix issue with negative value of cells #126 + + ELinks 0.14.2 ------------- @@ -13,6 +21,7 @@ Released on 2021-08-29 * crash in nttp #114 * XSS in gopher #125 + ELinks 0.14.1 ------------- diff --git a/configure.ac b/configure.ac index 178be675..85b3bfa2 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.14.2 +VERSION=0.14.3 AC_SUBST(PACKAGE) AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version]) diff --git a/meson.build b/meson.build index 12a2d3f9..4bd4d5bc 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('elinks', ['c','cpp'], version:'0.14.2', license:'GPLv2') +project('elinks', ['c','cpp'], version:'0.14.3', license:'GPLv2') srcs=[] srcdir = meson.source_root() @@ -8,7 +8,7 @@ dirty = run_command(srcdir + '/git-dirty.sh').stdout().strip() add_global_arguments('-DBUILD_ID="' + txt + dirty + '"', language : 'c') conf_data = configuration_data() -conf_data.set('VERSION', '0.14.2') +conf_data.set('VERSION', '0.14.3') conf_data.set('PACKAGE', 'elinks')