Skip to content

Commit 2662c0d

Browse files
committed
1.3.18 release prep
1 parent c44b7d0 commit 2662c0d

File tree

9 files changed

+17
-8
lines changed

9 files changed

+17
-8
lines changed

ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
ENet 1.3.18 (April 14, 2024):
2+
3+
* Packet sending performance improvements
4+
* MTU negotiation fixes
5+
* Checksum alignment fix
6+
* No more dynamic initialization of checksum table
7+
* ENET_SOCKOPT_TTL
8+
* Other miscellaneous small improvements
9+
110
ENet 1.3.17 (November 15, 2020):
211

312
* fixes for sender getting too far ahead of receiver that can cause instability with reliable packets

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.17
41+
PROJECT_NUMBER = v1.3.18
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

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2002-2020 Lee Salzman
1+
Copyright (c) 2002-2024 Lee Salzman
22

33
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:
44

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:5:0
19+
libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 7:6: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.17])
1+
AC_INIT([libenet], [1.3.18])
22
AC_CONFIG_SRCDIR([include/enet/enet.h])
33
AM_INIT_AUTOMAKE([foreign])
44

docs/license.dox

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
@page License License
33

4-
Copyright (c) 2002-2020 Lee Salzman
4+
Copyright (c) 2002-2024 Lee Salzman
55

66
Permission is hereby granted, free of charge, to any person obtaining
77
a copy of this software and associated documentation files (the

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.17) can be downloaded <a class="el" href="download/enet-1.3.17.tar.gz">here</a>.
39+
The most recent stable release (1.3.18) can be downloaded <a class="el" href="download/enet-1.3.18.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 17
28+
#define ENET_VERSION_PATCH 18
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)

win32.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "enet/enet.h"
99
#include <windows.h>
1010
#include <mmsystem.h>
11-
#include <ws2ipdef.h>
11+
#include <ws2tcpip.h>
1212

1313
static enet_uint32 timeBase = 0;
1414

0 commit comments

Comments
 (0)