From: Clinton Ebadi Date: Sat, 9 May 2020 20:05:18 +0000 (-0400) Subject: Release 2.3.1 X-Git-Tag: release-2.3.1^0 X-Git-Url: http://git.hcoop.net/clinton/bobotpp.git/commitdiff_plain/0bfd545aaf9523a0823e27c4fbae8edb8796fb91 Release 2.3.1 Guile 3.0 support and a few small bug fixes is good enough reason to call it a stable release. --- diff --git a/NEWS b/NEWS index 0ec47b1..e834b6e 100644 --- a/NEWS +++ b/NEWS @@ -23,6 +23,10 @@ IMPORTANT NOTES: ====== The News ===================================================== ===================================================================== +Version 2.3.1: + - Guile 3.0 support + - Minor doc and bug fixes + Version 2.3.0: - Threadsafety enhancements + Hooks are now threadsafe and hook functions can safely add new diff --git a/configure.ac b/configure.ac index 5d42ad0..0d3f4d0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PRERQ(2.50) -AC_INIT([Bobot++], [2.3.0], [clinton@unknownlamer.org], [bobotpp]) +AC_INIT([Bobot++], [2.3.1], [clinton@unknownlamer.org], [bobotpp]) AC_LANG([C++]) AM_INIT_AUTOMAKE AM_CONFIG_HEADER(config.h) diff --git a/source/Bot.H b/source/Bot.H index 5aea207..b57f2a8 100644 --- a/source/Bot.H +++ b/source/Bot.H @@ -32,7 +32,7 @@ #include "String.H" #define VERSION_STRING PACKAGE " version " VERSION " by unknown_lamer@FreeNode \n1.97 and below by eb@IRCNet " -#define COPYRIGHT_STRING PACKAGE " version " VERSION ", Copyright (C) 1997-2000 Etienne BERNARD\nCopyright (C) 2002,2003,2004,2005,2008,2009 Clinton Ebadi" +#define COPYRIGHT_STRING PACKAGE " version " VERSION ", Copyright (C) 1997-2000 Etienne BERNARD\nCopyright (C) 2002,2003,2004,2005,2008,2009,2020 Clinton Ebadi" class Channel; class ChannelList;