Browse Source

1.3.16 release prep

Lee Salzman 5 years ago
parent
commit
0bd265b230
6 changed files with 11 additions and 5 deletions
  1. 6 0
      ChangeLog
  2. 1 1
      Doxyfile
  3. 1 1
      Makefile.am
  4. 1 1
      configure.ac
  5. 1 1
      docs/mainpage.dox
  6. 1 1
      include/enet/enet.h

+ 6 - 0
ChangeLog

@@ -1,3 +1,9 @@
+ENet 1.3.16 (September 8, 2020):
+
+* fix bug in unreliable fragment queuing
+* use single output queue for reliable and unreliable packets for saner ordering
+* revert experimental throttle changes that were less stable than prior algorithm
+
 ENet 1.3.15 (April 20, 2020):
 ENet 1.3.15 (April 20, 2020):
 
 
 * quicker RTT initialization
 * quicker RTT initialization

+ 1 - 1
Doxyfile

@@ -38,7 +38,7 @@ PROJECT_NAME           = "ENet"
 # could be handy for archiving the generated documentation or if some version
 # could be handy for archiving the generated documentation or if some version
 # control system is used.
 # control system is used.
 
 
-PROJECT_NUMBER         = v1.3.15
+PROJECT_NUMBER         = v1.3.16
 
 
 # Using the PROJECT_BRIEF tag one can provide an optional one line description
 # 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
 # for a project that appears at the top of each page and should give viewer a

+ 1 - 1
Makefile.am

@@ -16,7 +16,7 @@ enetinclude_HEADERS = \
 lib_LTLIBRARIES = libenet.la
 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
 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
 # see info '(libtool) Updating version info' before making a release
-libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 7:3:0
+libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 7:4:0
 AM_CPPFLAGS = -I$(top_srcdir)/include
 AM_CPPFLAGS = -I$(top_srcdir)/include
 
 
 ACLOCAL_AMFLAGS = -Im4
 ACLOCAL_AMFLAGS = -Im4

+ 1 - 1
configure.ac

@@ -1,4 +1,4 @@
-AC_INIT([libenet], [1.3.15])
+AC_INIT([libenet], [1.3.16])
 AC_CONFIG_SRCDIR([include/enet/enet.h])
 AC_CONFIG_SRCDIR([include/enet/enet.h])
 AM_INIT_AUTOMAKE([foreign])
 AM_INIT_AUTOMAKE([foreign])
 
 

+ 1 - 1
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
 You can retrieve the source to ENet by downloading it in either .tar.gz form
 or accessing the github distribution directly.
 or accessing the github distribution directly.
 
 
-The most recent stable release (1.3.15) can be downloaded <a class="el" href="download/enet-1.3.15.tar.gz">here</a>.
+The most recent stable release (1.3.16) can be downloaded <a class="el" href="download/enet-1.3.16.tar.gz">here</a>.
 The last release that is protocol compatible with the 1.2 series or earlier (1.2.5) can be downloaded <a class="el" href="download/enet-1.2.5.tar.gz">here</a>. 
 The last release that is protocol compatible with the 1.2 series or earlier (1.2.5) can be downloaded <a class="el" href="download/enet-1.2.5.tar.gz">here</a>. 
 
 
 You can find the most recent ENet source at <a class="el" href="https://github.com/lsalzman/enet">the github repository</a>.
 You can find the most recent ENet source at <a class="el" href="https://github.com/lsalzman/enet">the github repository</a>.

+ 1 - 1
include/enet/enet.h

@@ -25,7 +25,7 @@ extern "C"
 
 
 #define ENET_VERSION_MAJOR 1
 #define ENET_VERSION_MAJOR 1
 #define ENET_VERSION_MINOR 3
 #define ENET_VERSION_MINOR 3
-#define ENET_VERSION_PATCH 15
+#define ENET_VERSION_PATCH 16
 #define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
 #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_MAJOR(version) (((version)>>16)&0xFF)
 #define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)
 #define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)