From dc48f76192d0bf144f507c26625d2c6f4a106108 Mon Sep 17 00:00:00 2001 From: Lee Salzman Date: Fri, 16 Aug 2013 01:19:06 +0300 Subject: [PATCH] enet 1.3.9 release prep --- ChangeLog | 2 ++ Makefile.am | 2 +- configure.ac | 2 +- docs/mainpage.dox | 2 +- include/enet/enet.h | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index c1572ae..6c71a58 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +ENet 1.3.9 (August 16, 2013): + * added enet_socket_get_option() and ENET_SOCKOPT_ERROR * added enet_host_random_seed() platform stub diff --git a/Makefile.am b/Makefile.am index 5a0698a..35cacb7 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 5:0:3 +libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 6:0:4 INCLUDES = -I$(top_srcdir)/include ACLOCAL_AMFLAGS = -Im4 diff --git a/configure.ac b/configure.ac index 705a074..2bde5c6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libenet], [1.3.8]) +AC_INIT([libenet], [1.3.9]) AC_CONFIG_SRCDIR([include/enet/enet.h]) AM_INIT_AUTOMAKE([foreign]) diff --git a/docs/mainpage.dox b/docs/mainpage.dox index 4380417..4f3e35d 100644 --- a/docs/mainpage.dox +++ b/docs/mainpage.dox @@ -36,7 +36,7 @@ portable, and easily embeddable. You can retrieve the source to ENet by downloading it in either .tar.gz form or accessing the github distribution directly. -The most recent stable release (1.3.8) can be downloaded here. +The most recent stable release (1.3.9) can be downloaded here. The last release that is protocol compatible with the 1.2 series or earlier (1.2.5) can be downloaded here You can find the most recent ENet source at the github repository. diff --git a/include/enet/enet.h b/include/enet/enet.h index 0298d84..82ec73f 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 8 +#define ENET_VERSION_PATCH 9 #define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch)) #define ENET_VERSION_GET_MAJOR(version) (((version)>>16)&0xFF) #define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)