summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorlsalzman <[email protected]>2013-03-06 17:10:59 +0200
committerlsalzman <[email protected]>2013-03-06 17:10:59 +0200
commiteb7126c66225d04aff084e19274e15a43db884d4 (patch)
tree272808be0a42a55015de0443223c5fc98791654e
parent4ce4aac14954ee9c302708468ec6c0efd3a1ac2f (diff)
downloadenet-1.3.7.tar.gz
enet-1.3.7.zip
ENet 1.3.7 release prepv1.3.7
-rw-r--r--ChangeLog2
-rw-r--r--LICENSE2
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac2
-rwxr-xr-xdocs/license.dox2
-rwxr-xr-xdocs/mainpage.dox2
-rw-r--r--include/enet/enet.h2
7 files changed, 8 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 642201f..c3f918e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+ENet 1.3.7 (March 6, 2013):
+
* added ENET_PACKET_FLAG_SENT to indicate that a packet is being freed because it has been sent
* added userData field to ENetPacket
* changed how random seed is generated on Windows to avoid import warnings
diff --git a/LICENSE b/LICENSE
index d8ad0df..87961d3 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2002-2012 Lee Salzman
+Copyright (c) 2002-2013 Lee Salzman
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/Makefile.am b/Makefile.am
index e2e2ff5..f24499b 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 3:0:1
+libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 4:0:2
INCLUDES = -I$(top_srcdir)/include
ACLOCAL_AMFLAGS = -Im4
diff --git a/configure.ac b/configure.ac
index 44967c7..e23d7a7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libenet], [1.3.6])
+AC_INIT([libenet], [1.3.7])
AC_CONFIG_SRCDIR([include/enet/enet.h])
AM_INIT_AUTOMAKE([foreign])
diff --git a/docs/license.dox b/docs/license.dox
index bd0a356..79cad28 100755
--- a/docs/license.dox
+++ b/docs/license.dox
@@ -1,7 +1,7 @@
/**
@page License License
-Copyright (c) 2002-2012 Lee Salzman
+Copyright (c) 2002-2013 Lee Salzman
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
diff --git a/docs/mainpage.dox b/docs/mainpage.dox
index 3a9fe28..2771db6 100755
--- 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.6) can be downloaded <a href="http://enet.bespin.org/download/enet-1.3.6.tar.gz">here</a>.
+The most recent stable release (1.3.7) can be downloaded <a href="http://enet.bespin.org/download/enet-1.3.7.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 href="http://enet.bespin.org/download/enet-1.2.5.tar.gz">here</a>
You can find the most recent ENet source at <a href="https://github.com/lsalzman/enet">the github repository</a>.
diff --git a/include/enet/enet.h b/include/enet/enet.h
index 07b9bbd..5f9d540 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 6
+#define ENET_VERSION_PATCH 7
#define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
#define ENET_VERSION ENET_VERSION_CREATE(ENET_VERSION_MAJOR, ENET_VERSION_MINOR, ENET_VERSION_PATCH)