From e0e7045b7e056b454b5093cb34df49dc4cee0bee Mon Sep 17 00:00:00 2001 From: Lee Salzman Date: Sun, 15 Nov 2020 12:40:57 -0500 Subject: 1.3.17 release prep --- ChangeLog | 4 ++++ Doxyfile | 2 +- Makefile.am | 2 +- configure.ac | 2 +- docs/mainpage.dox | 2 +- include/enet/enet.h | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index b6ca52e..66a97aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +ENet 1.3.17 (November 15, 2020): + +* fixes for sender getting too far ahead or receiver that can cause instability with reliable packets + ENet 1.3.16 (September 8, 2020): * fix bug in unreliable fragment queuing diff --git a/Doxyfile b/Doxyfile index a4013a6..6b4d06f 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "ENet" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v1.3.16 +PROJECT_NUMBER = v1.3.17 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Makefile.am b/Makefile.am index d3a7e50..d029ed1 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 7:4:0 +libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 7:5:0 AM_CPPFLAGS = -I$(top_srcdir)/include ACLOCAL_AMFLAGS = -Im4 diff --git a/configure.ac b/configure.ac index a36ae9b..e0c745d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libenet], [1.3.16]) +AC_INIT([libenet], [1.3.17]) AC_CONFIG_SRCDIR([include/enet/enet.h]) AM_INIT_AUTOMAKE([foreign]) diff --git a/docs/mainpage.dox b/docs/mainpage.dox index 6e60f53..a172dc8 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.16) can be downloaded here. +The most recent stable release (1.3.17) 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 c5b0ec4..fc45cbd 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 16 +#define ENET_VERSION_PATCH 17 #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) -- cgit v1.2.3