Skip to content

Commit b14ba02

Browse files
committed
Bumping version number
1 parent 692b27f commit b14ba02

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/Managed/ENet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ public static class Library
11281128
public const uint timeoutLimit = 32;
11291129
public const uint timeoutMinimum = 5000;
11301130
public const uint timeoutMaximum = 30000;
1131-
public const uint version = (2 << 16) | (4 << 8) | (7);
1131+
public const uint version = (2 << 16) | (4 << 8) | (8);
11321132

11331133
public static uint Time
11341134
{

Source/Native/enet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
#define ENET_VERSION_MAJOR 2
3535
#define ENET_VERSION_MINOR 4
36-
#define ENET_VERSION_PATCH 7
36+
#define ENET_VERSION_PATCH 8
3737
#define ENET_VERSION_CREATE(major, minor, patch) (((major) << 16) | ((minor) << 8) | (patch))
3838
#define ENET_VERSION_GET_MAJOR(version) (((version) >> 16) & 0xFF)
3939
#define ENET_VERSION_GET_MINOR(version) (((version) >> 8) & 0xFF)

0 commit comments

Comments
 (0)