diff --git a/.CHANGES.NEW b/.CHANGES.NEW
index 3807935d9..67ec18bc5 100644
--- a/.CHANGES.NEW
+++ b/.CHANGES.NEW
@@ -7,7 +7,7 @@
\___/|_| |_|_| \___|\__,_|_|\___/\_| \_| \____/\__,_|
Configuration Program
- for Unreal3.2.10.2
+ for Unreal3.2.10.3
This program will help you to compile your IRC server, and ask you
questions regarding the compile-time settings of it during the process.
diff --git a/.RELEASE.NOTES b/.RELEASE.NOTES
index bc8f5f199..32ae34d83 100644
--- a/.RELEASE.NOTES
+++ b/.RELEASE.NOTES
@@ -1,4 +1,4 @@
-Unreal3.2.10.2 Release Notes
+Unreal3.2.10.3 Release Notes
=============================
==[ GENERAL INFORMATION ]==
@@ -13,6 +13,21 @@ Unreal3.2.10.2 Release Notes
SUMMARY of the changes in this release. See the file 'Changes' for a
complete list of all changes.
+==[ .3 RELEASE ]==
+The following issues have been fixed in 3.2.10.3:
+- Crash when SASL is enabled and ping-cookie is disabled
+- Compile issue with remote include
+- OS X compile problems
+- ./unreal backtrace not always working well
+Changes:
+- For silenced users we now only check the current nick!user@host
+- Server to server links now use latest TLS (eg: v1.2) instead of SSLv3
+New:
+- Added set::spamfilter::stop-on-first-match (default yes). You can change
+ this to 'no' to have UnrealIRCd continue processing all spamfilters even
+ after the first match. The spamfilter with the 'gravest action' wins
+ (eg: gzline wins from block).
+
==[ .2 RELEASE ]==
The following major issues were present in 3.2.10 & 3.2.10.1 and have
been fixed in this version:
diff --git a/Unreal.nfo b/Unreal.nfo
index 4006021c7..be98bc836 100644
--- a/Unreal.nfo
+++ b/Unreal.nfo
@@ -1,5 +1,5 @@
===============================================
-= UnrealIRCd v3.2.10.2 =
+= UnrealIRCd v3.2.10.3 =
===============================================
This release was brought to you by:
diff --git a/configure b/configure
index 1a7fc9602..0a622a723 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for unrealircd 3.2.10.2.
+# Generated by GNU Autoconf 2.69 for unrealircd 3.2.10.3.
#
# Report bugs to .
#
@@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='unrealircd'
PACKAGE_TARNAME='unrealircd'
-PACKAGE_VERSION='3.2.10.2'
-PACKAGE_STRING='unrealircd 3.2.10.2'
+PACKAGE_VERSION='3.2.10.3'
+PACKAGE_STRING='unrealircd 3.2.10.3'
PACKAGE_BUGREPORT='http://bugs.unrealircd.org/'
PACKAGE_URL='http://unrealircd.org/'
@@ -1282,7 +1282,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures unrealircd 3.2.10.2 to adapt to many kinds of systems.
+\`configure' configures unrealircd 3.2.10.3 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1343,7 +1343,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of unrealircd 3.2.10.2:";;
+ short | recursive ) echo "Configuration of unrealircd 3.2.10.3:";;
esac
cat <<\_ACEOF
@@ -1481,7 +1481,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-unrealircd configure 3.2.10.2
+unrealircd configure 3.2.10.3
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2087,7 +2087,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by unrealircd $as_me 3.2.10.2, which was
+It was created by unrealircd $as_me 3.2.10.3, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -7631,7 +7631,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by unrealircd $as_me 3.2.10.2, which was
+This file was extended by unrealircd $as_me 3.2.10.3, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -7694,7 +7694,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-unrealircd config.status 3.2.10.2
+unrealircd config.status 3.2.10.3
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff --git a/configure.ac b/configure.ac
index fa37aa89a..87a80cdd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,7 @@ dnl Unreal.nfo
dnl .CHANGES.NEW
dnl src/version.c.SH
-AC_INIT([unrealircd], [3.2.10.2], [http://bugs.unrealircd.org/], [], [http://unrealircd.org/])
+AC_INIT([unrealircd], [3.2.10.3], [http://bugs.unrealircd.org/], [], [http://unrealircd.org/])
AC_CONFIG_SRCDIR([src/ircd.c])
AC_CONFIG_HEADER([include/setup.h])
AC_CONFIG_AUX_DIR([autoconf])
diff --git a/doc/unreal32docs.de.html b/doc/unreal32docs.de.html
index 97bd3c10a..0ff86d0a4 100644
--- a/doc/unreal32docs.de.html
+++ b/doc/unreal32docs.de.html
@@ -27,7 +27,7 @@
Head Coders: Stskeeps / codemastr / Syzop / Luke/
aquanight / WolfSage
diff --git a/doc/unreal32docs.es.html b/doc/unreal32docs.es.html
index bc120a556..b2216bc17 100644
--- a/doc/unreal32docs.es.html
+++ b/doc/unreal32docs.es.html
@@ -30,7 +30,7 @@ Spanish
Programador jefe/mantenimiento: Syzop
diff --git a/doc/unreal32docs.fr.html b/doc/unreal32docs.fr.html
index ae99aada0..e9898afc1 100644
--- a/doc/unreal32docs.fr.html
+++ b/doc/unreal32docs.fr.html
@@ -33,7 +33,7 @@
UnrealIRCd
http://www.unrealircd.com
-
Version: 3.2.10.2
+
Version: 3.2.10.3
Dernière mise à jour de la documentation: 2013-04-05
diff --git a/doc/unreal32docs.html b/doc/unreal32docs.html
index 433aea5ce..9752ecbaf 100644
--- a/doc/unreal32docs.html
+++ b/doc/unreal32docs.html
@@ -30,7 +30,7 @@ English |
Head coder/maintainer: Syzop
diff --git a/doc/unreal32docs.hu.html b/doc/unreal32docs.hu.html
index 8836ebd96..438d5ac20 100644
--- a/doc/unreal32docs.hu.html
+++ b/doc/unreal32docs.hu.html
@@ -29,7 +29,7 @@ Hungarian |
Fõ fejlesztõ/karbantartó: Syzop
diff --git a/doc/unreal32docs.ru.html b/doc/unreal32docs.ru.html
index 1a5daacae..7cb157eb3 100644
--- a/doc/unreal32docs.ru.html
+++ b/doc/unreal32docs.ru.html
@@ -28,7 +28,7 @@
Ãëàâíûå ïðîãðàììèñòû Syzop
diff --git a/doc/unreal32docs.tr.html b/doc/unreal32docs.tr.html
index c0ebb3755..1ce8b96ee 100644
--- a/doc/unreal32docs.tr.html
+++ b/doc/unreal32docs.tr.html
@@ -48,7 +48,7 @@ href="unreal32docs.hu.html">Hungarian
Baþ Kodlayýcý/Devam Ettiren: Syzop
Kodlayýcýlar: binki
diff --git a/src/modules/l_commands.c b/src/modules/l_commands.c
index 8ae5aa401..3705f2dad 100644
--- a/src/modules/l_commands.c
+++ b/src/modules/l_commands.c
@@ -61,7 +61,7 @@ ModuleHeader l_commands_Header
#endif
= {
"commands", /* Name of module */
- "3.2.10.2", /* Version */
+ "3.2.10.3", /* Version */
"Wrapper library for m_ commands", /* Short description of module */
"3.2-b8-1",
NULL
diff --git a/src/version.c.SH b/src/version.c.SH
index 66d47c303..54842b2db 100644
--- a/src/version.c.SH
+++ b/src/version.c.SH
@@ -4,7 +4,7 @@ echo "Extracting src/version.c..."
#id=`grep '$Id: Changes,v' ../Changes`
#id=`echo $id |sed 's/.* Changes\,v \(.*\) .* Exp .*/\1/'`
-id="3.2.10.2"
+id="3.2.10.3"
echo "$id"
if test -r version.c
diff --git a/src/win32/unrealinst.iss b/src/win32/unrealinst.iss
index a6df4cd8c..8a0e92b03 100644
--- a/src/win32/unrealinst.iss
+++ b/src/win32/unrealinst.iss
@@ -11,7 +11,7 @@
[Setup]
AppName=UnrealIRCd
-AppVerName=UnrealIRCd3.2.10.2
+AppVerName=UnrealIRCd3.2.10.3
AppPublisher=UnrealIRCd Team
AppPublisherURL=http://www.unrealircd.com
AppSupportURL=http://www.unrealircd.com