1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

tag as 1.3.1-an

This commit is contained in:
Ailin Nemui 2021-12-17 22:42:13 +01:00
parent dbf9fc3dfc
commit 85a6ade7e8
4 changed files with 8 additions and 3 deletions

5
NEWS
View File

@ -1,3 +1,8 @@
v1.3.1-an 2021-12-17 Ailin Nemui <Nei>
- Minor help fixes (an#51, an#52)
- Fix regression where own channel status was forgotten after
/UPGRADE (#1357, an#53)
v1.3.0-an 2021-11-11 Ailin Nemui <Nei>
* /SET resolve_reverse_lookup setting was removed (#1135)
* Irssi will try to connect on IPv4 if IPv6 connection failed

View File

@ -1,4 +1,4 @@
AC_INIT(irssi, 1.3.0-pre8)
AC_INIT(irssi, 1.3.1-an)
AC_CONFIG_SRCDIR([src])
AC_CONFIG_AUX_DIR(build-aux)
AC_PREREQ(2.50)

View File

@ -1,5 +1,5 @@
project('irssi', 'c',
version : '1.3.0-pre8',
version : '1.3.1-an',
meson_version : '>=0.49',
default_options : ['warning_level=1'])

View File

@ -322,7 +322,7 @@ static char *expando_last_invite(SERVER_REC *server, void *item, int *free_ret)
/* client version text string */
static char *expando_version(SERVER_REC *server, void *item, int *free_ret)
{
return PACKAGE_VERSION "-an";
return PACKAGE_VERSION;
}
/* current value of CMDCHARS */