Skip to content

Commit b1758c4

Browse files
committed
Merge remote-tracking branch 'enet/master'
2 parents c10af34 + f7c46f0 commit b1758c4

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
ENet 1.3.13 (April 30, 2015):
2+
3+
* miscellaneous bug fixes
4+
* added premake and cmake support
5+
* miscellaneous documentation cleanups
6+
17
ENet 1.3.12 (April 24, 2014):
28

39
* added maximumPacketSize and maximumWaitingData fields to ENetHost to limit the amount of

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "ENet"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v1.3.12
41+
PROJECT_NUMBER = v1.3.13
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ enetinclude_HEADERS = \
1616
lib_LTLIBRARIES = libenet.la
1717
libenet_la_SOURCES = callbacks.c compress.c host.c list.c packet.c peer.c protocol.c unix.c win32.c
1818
# see info '(libtool) Updating version info' before making a release
19-
libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 7:0:0
19+
libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 7:1:0
2020
AM_CPPFLAGS = -I$(top_srcdir)/include
2121

2222
ACLOCAL_AMFLAGS = -Im4

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([libenet], [1.3.12])
1+
AC_INIT([libenet], [1.3.13])
22
AC_CONFIG_SRCDIR([include/enet/enet.h])
33
AM_INIT_AUTOMAKE([foreign])
44

docs/mainpage.dox

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ portable, and easily embeddable.
3636
You can retrieve the source to ENet by downloading it in either .tar.gz form
3737
or accessing the github distribution directly.
3838

39-
The most recent stable release (1.3.12) can be downloaded <a class="el" href="download/enet-1.3.12.tar.gz">here</a>.
39+
The most recent stable release (1.3.13) can be downloaded <a class="el" href="download/enet-1.3.13.tar.gz">here</a>.
4040
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>.
4141

4242
You can find the most recent ENet source at <a class="el" href="https://github.com/lsalzman/enet">the github repository</a>.

include/enet/enet.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ extern "C"
2525

2626
#define ENET_VERSION_MAJOR 1
2727
#define ENET_VERSION_MINOR 3
28-
#define ENET_VERSION_PATCH 12
28+
#define ENET_VERSION_PATCH 13
2929
#define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
3030
#define ENET_VERSION_GET_MAJOR(version) (((version)>>16)&0xFF)
3131
#define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)

0 commit comments

Comments
 (0)