From 4de329771bfaf06dbccf762278bf55a3d8f4376c Mon Sep 17 00:00:00 2001 From: Stas Denisov Date: Sun, 8 Dec 2019 21:34:49 +0500 Subject: [PATCH] Bump the version --- Source/Managed/ENet.cs | 2 +- Source/Native/enet.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Managed/ENet.cs b/Source/Managed/ENet.cs index 092141d..48a95c4 100644 --- a/Source/Managed/ENet.cs +++ b/Source/Managed/ENet.cs @@ -874,7 +874,7 @@ public static class Library { 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; diff --git a/Source/Native/enet.h b/Source/Native/enet.h index c03aa24..c9136cb 100644 --- a/Source/Native/enet.h +++ b/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)