Browse Source

Bump version number

Matt Coburn 2 years ago
parent
commit
c8aca8a339
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Source/Managed/ENet.cs
  2. 1 1
      Source/Native/enet.h

+ 1 - 1
Source/Managed/ENet.cs

@@ -1128,7 +1128,7 @@ namespace ENet
 		public const uint timeoutLimit = 32;
 		public const uint timeoutMinimum = 5000;
 		public const uint timeoutMaximum = 30000;
-		public const uint version = (2 << 16) | (4 << 8) | (8);
+		public const uint version = (2 << 16) | (4 << 8) | (9);
 
 		public static uint Time
 		{

+ 1 - 1
Source/Native/enet.h

@@ -33,7 +33,7 @@
 
 #define ENET_VERSION_MAJOR 2
 #define ENET_VERSION_MINOR 4
-#define ENET_VERSION_PATCH 8
+#define ENET_VERSION_PATCH 9
 #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)