diff --git a/CMakeLists.txt b/CMakeLists.txt index e231f0d0..e2612f54 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.1) project(ZNC VERSION 1.8.2 LANGUAGES CXX) set(ZNC_VERSION 1.8.2) set(append_git_version false) -set(alpha_version "-rc1") # e.g. "-rc1" +set(alpha_version "") # e.g. "-rc1" set(VERSION_EXTRA "" CACHE STRING "Additional string appended to version, e.g. to mark distribution") diff --git a/ChangeLog.md b/ChangeLog.md index 997cccd3..604ec4de 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,16 @@ +# ZNC 1.8.2 (2020-07-07) + +## New +* Polish translation +* List names of translators in TRANSLATORS.md file in source, as this contribution isn't directly reflected in git log +* During --makeconf warn about listening on port 6697 too, not only about 6667 + +## Fixes +* webadmin: When confirming deletion of a network and selecting No, redirect to the edituser page instead of listusers page +* Make more client command results translateable, which were missed before + + + # ZNC 1.8.1 (2020-05-07) Fixed bug introduced in ZNC 1.8.0: diff --git a/configure.ac b/configure.ac index 690f58f8..cd2070fc 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_DEFUN([AC_PROG_CC], [m4_errprint(__file__:__line__[: Something is trying to u dnl Needed for AC_PATH_PROGS_FEATURE_CHECK which was added in 2.62 AC_PREREQ([2.62]) dnl Keep the version number in sync with version.h! -AC_INIT([znc], [1.8.2-rc1]) +AC_INIT([znc], [1.8.2]) LIBZNC_VERSION=1.8.2 AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([src/znc.cpp])