fix version numbers
This commit is contained in:
parent
39eb6600df
commit
7d41f8e901
4 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
||||||
Black List Scanning Bot Module for NeoStats Changelog.
|
Black List Scanning Bot Module for NeoStats Changelog.
|
||||||
==============================================================================
|
==============================================================================
|
||||||
3.0.a3-dev - Fish (F) & Mark (M)
|
3.0.a3 - Fish (F) & Mark (M) & DeadNotBuried (D)
|
||||||
- Add support for lookup lists only without banning (D)
|
- Add support for lookup lists only without banning (D)
|
||||||
- Make sure we broadcast a message when we akill even if not in verbose (F)
|
- Make sure we broadcast a message when we akill even if not in verbose (F)
|
||||||
- AKILL support (F)
|
- AKILL support (F)
|
||||||
|
|
4
configure
vendored
4
configure
vendored
|
@ -19486,8 +19486,8 @@ if test "$ns_version_ok" = "yes"; then
|
||||||
echo "$as_me:$LINENO: result: Compatible version" >&5
|
echo "$as_me:$LINENO: result: Compatible version" >&5
|
||||||
echo "${ECHO_T}Compatible version" >&6;
|
echo "${ECHO_T}Compatible version" >&6;
|
||||||
else
|
else
|
||||||
{ { echo "$as_me:$LINENO: error: This module requires NeoStats 3.0.a3-dev or higher" >&5
|
{ { echo "$as_me:$LINENO: error: This module requires NeoStats 3.0.a3 or higher" >&5
|
||||||
echo "$as_me: error: This module requires NeoStats 3.0.a3-dev or higher" >&2;}
|
echo "$as_me: error: This module requires NeoStats 3.0.a3 or higher" >&2;}
|
||||||
{ (exit 1); exit 1; }; }
|
{ (exit 1); exit 1; }; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ int main(void) {
|
||||||
if test "$ns_version_ok" = "yes"; then
|
if test "$ns_version_ok" = "yes"; then
|
||||||
AC_MSG_RESULT(Compatible version);
|
AC_MSG_RESULT(Compatible version);
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR(This module requires NeoStats 3.0.a3-dev or higher)
|
AC_MSG_ERROR(This module requires NeoStats 3.0.a3 or higher)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl check if we are running with debug....
|
dnl check if we are running with debug....
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
/* #undef DEBUG */
|
/* #undef DEBUG */
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define MODULE_VERSION "3.0.a3-dev"
|
#define MODULE_VERSION "3.0.a3"
|
||||||
|
|
||||||
/* Major Version */
|
/* Major Version */
|
||||||
#define MODULE_MAJOR "3"
|
#define MODULE_MAJOR "3"
|
||||||
|
@ -15,6 +15,6 @@
|
||||||
#define MODULE_MINOR "0"
|
#define MODULE_MINOR "0"
|
||||||
|
|
||||||
/* Revision */
|
/* Revision */
|
||||||
#define MODULE_REV "a3-dev"
|
#define MODULE_REV "a3"
|
||||||
|
|
||||||
#endif /* _MODCONFIGWIN32_H_ */
|
#endif /* _MODCONFIGWIN32_H_ */
|
||||||
|
|
Reference in a new issue