diff --git a/ChangeLog b/ChangeLog
index 3b1249d..b1fc200 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-ENet CVS (January 31, 2011):
+ENet 1.3.1 (February 10, 2011):
* fixed bug in tracking of reliable data in transit
* reliable data window size now scales with the throttle
diff --git a/Makefile.am b/Makefile.am
index 17ce8c0..4f39688 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -16,7 +16,7 @@ enetinclude_HEADERS = \
lib_LTLIBRARIES = libenet.la
libenet_la_SOURCES = callbacks.c compress.c host.c list.c packet.c peer.c protocol.c unix.c win32.c
# see info '(libtool) Updating version info' before making a release
-libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0
+libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:1:0
INCLUDES = -Iinclude
ACLOCAL_AMFLAGS = -Im4
diff --git a/configure.ac b/configure.ac
index 981f4d2..468a4b4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libenet], [1.3.0])
+AC_INIT([libenet], [1.3.1])
AC_CONFIG_SRCDIR([include/enet/enet.h])
AM_INIT_AUTOMAKE([foreign])
diff --git a/docs/mainpage.dox b/docs/mainpage.dox
index 8aa1a13..1ea5b4e 100755
--- a/docs/mainpage.dox
+++ b/docs/mainpage.dox
@@ -36,8 +36,8 @@ portable, and easily embeddable.
You can retrieve the source to ENet by downloading it in either .tar.gz form
or accessing the cvs distribution directly.
-The most recent stable release (1.3.0) can be downloaded here.
-The last release that is protocol compatible with the 1.2 series or earlier (1.2.2) can be downloaded here
+The most recent stable release (1.3.1) can be downloaded here.
+The last release that is protocol compatible with the 1.2 series or earlier (1.2.3) can be downloaded here
To access ENet via anonymous CVS, you must use the CVSROOT
:pserver:anonymous\@bespin.org:/var/lib/cvs/enet with an empty
diff --git a/include/enet/enet.h b/include/enet/enet.h
index 2f656d6..b572590 100644
--- a/include/enet/enet.h
+++ b/include/enet/enet.h
@@ -25,7 +25,7 @@ extern "C"
#define ENET_VERSION_MAJOR 1
#define ENET_VERSION_MINOR 3
-#define ENET_VERSION_PATCH 0
+#define ENET_VERSION_PATCH 1
#define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
#define ENET_VERSION ENET_VERSION_CREATE(ENET_VERSION_MAJOR, ENET_VERSION_MINOR, ENET_VERSION_PATCH)