From f7a93b46373b9055c8f331aaa952e58c802b8a2c Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Thu, 26 Dec 2024 12:02:09 +0100 Subject: [PATCH] [NEWS] 0.18.0 --- NEWS | 9 +++++++++ configure.ac | 2 +- meson.build | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index aa15ef2a2..2ff5887e9 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.18.0 +------------- + +Released on 2024-12-26 + +* redirect also for 308 #343 +* ignore HUBBUB_UNKNOWN #344 + + ELinks 0.18.0rc1 ---------------- diff --git a/configure.ac b/configure.ac index 2e5863ea4..b6a52f024 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.0rc1 +VERSION=0.18.0 AC_SUBST(PACKAGE) AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version]) diff --git a/meson.build b/meson.build index 6fa829228..34ddb30f8 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('elinks', ['c','cpp'], version:'0.18.0rc1', license:'GPLv2', default_options:['cpp_std=gnu++17'], meson_version:'>=1.0.1') +project('elinks', ['c','cpp'], version:'0.18.0', license:'GPLv2', default_options:['cpp_std=gnu++17'], meson_version:'>=1.0.1') srcs=[] srcdir = meson.project_source_root()