aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLee Salzman <[email protected]>2020-04-19 19:40:37 -0400
committerLee Salzman <[email protected]>2020-04-19 19:40:37 -0400
commit22272e29f9bd96b7cbd2bdd3c03ecee0717e3f07 (patch)
tree314ea9071c00b032f28c2ec556e735289cf26218
parent5b93d08fa5e30fce3e3b1d922de6035dadd9e9af (diff)
downloadenet-22272e29f9bd96b7cbd2bdd3c03ecee0717e3f07.tar.gz
enet-22272e29f9bd96b7cbd2bdd3c03ecee0717e3f07.zip
enet 1.3.15 release prep
-rw-r--r--ChangeLog7
-rw-r--r--Doxyfile2
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac2
-rw-r--r--docs/mainpage.dox2
-rw-r--r--include/enet/enet.h2
6 files changed, 12 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 7df3467..67edefd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+ENet 1.3.15 (April 20, 2020):
+
+* quicker RTT initialization
+* use fractional precision for RTT calculations
+* fixes for packet throttle with low RTT variance
+* miscellaneous socket bug fixes
+
ENet 1.3.14 (January 27, 2019):
* bug fix for enet_peer_disconnect_later()
diff --git a/Doxyfile b/Doxyfile
index ddb8b0a..051279f 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.14
+PROJECT_NUMBER = v1.3.15
# 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 354deba..d5f4bb7 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:2:0
+libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 7:3:0
AM_CPPFLAGS = -I$(top_srcdir)/include
ACLOCAL_AMFLAGS = -Im4
diff --git a/configure.ac b/configure.ac
index 7a3340b..2f282bc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libenet], [1.3.14])
+AC_INIT([libenet], [1.3.15])
AC_CONFIG_SRCDIR([include/enet/enet.h])
AM_INIT_AUTOMAKE([foreign])
diff --git a/docs/mainpage.dox b/docs/mainpage.dox
index 68a83cd..06d62dc 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.14) can be downloaded <a class="el" href="download/enet-1.3.14.tar.gz">here</a>.
+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 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>.
diff --git a/include/enet/enet.h b/include/enet/enet.h
index baea93a..54d91b5 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 14
+#define ENET_VERSION_PATCH 15
#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)