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()