From d976790a1023f3cda5362b137751ce1652020fbd Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 27 Dec 2020 14:59:40 +0100 Subject: [PATCH] [NEWS] Info about 0.14.0 --- NEWS | 8 ++++++++ configure.ac | 2 +- meson.build | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index a7e92e6e..313daf8a 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.0 +-------------------- + +Released on 2020-12-27 + +No changes since 0.14.0rc2. + + ELinks 0.14.0rc2 -------------------- diff --git a/configure.ac b/configure.ac index 6d18515d..72f7633d 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.0rc2 +VERSION=0.14.0 AC_SUBST(PACKAGE) AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version]) diff --git a/meson.build b/meson.build index e5359247..ba479b4d 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('elinks', ['c','cpp'], version:'0.14.0rc2', license:'GPLv2') +project('elinks', ['c','cpp'], version:'0.14.0', 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.0rc2') +conf_data.set('VERSION', '0.14.0') conf_data.set('PACKAGE', 'elinks')