1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-02 06:11:11 +00:00

continue head

This commit is contained in:
Ailin Nemui 2021-09-07 01:21:35 +02:00
parent 2cdcf86174
commit 2003446e98
4 changed files with 5 additions and 3 deletions

2
NEWS
View File

@ -1,3 +1,5 @@
v1.4-head-an 2022-xx-xx Ailin Nemui <Nei>
v1.3.0-an 2021-09-05 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-head)
AC_INIT(irssi, 1.4-head-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-head',
version : '1.4-head-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 */