Browse Source

Bump the version

Stas Denisov 6 years ago
parent
commit
4de329771b
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

@@ -874,7 +874,7 @@ namespace ENet {
 		public const uint timeoutLimit = 32;
 		public const uint timeoutMinimum = 5000;
 		public const uint timeoutMaximum = 30000;
-		public const uint version = (2 << 16) | (3 << 8) | (1);
+		public const uint version = (2 << 16) | (3 << 8) | (2);
 
 		public static bool Initialize() {
 			return Native.enet_initialize() == 0;

+ 1 - 1
Source/Native/enet.h

@@ -31,7 +31,7 @@
 
 #define ENET_VERSION_MAJOR 2
 #define ENET_VERSION_MINOR 3
-#define ENET_VERSION_PATCH 1
+#define ENET_VERSION_PATCH 2
 #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)