Browse Source

Bump the version

nxrighthere 5 months ago
parent
commit
5cb7b630e5
3 changed files with 4 additions and 4 deletions
  1. 2 2
      ENet-CSharp.nuspec
  2. 1 1
      Source/Managed/ENet.cs
  3. 1 1
      Source/Native/enet.h

+ 2 - 2
ENet-CSharp.nuspec

@@ -2,7 +2,7 @@
 <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
 <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
   <metadata>
   <metadata>
     <id>ENet-CSharp</id>
     <id>ENet-CSharp</id>
-    <version>2.5.2</version>
+    <version>2.5.3</version>
     <title>ENet-CSharp</title>
     <title>ENet-CSharp</title>
     <authors>Stanislav Denisov</authors>
     <authors>Stanislav Denisov</authors>
     <owners>nxrighthere</owners>
     <owners>nxrighthere</owners>
@@ -12,7 +12,7 @@
     <description>Reliable UDP networking library extended for the .NET environment</description>
     <description>Reliable UDP networking library extended for the .NET environment</description>
     <summary></summary>
     <summary></summary>
     <releaseNotes></releaseNotes>
     <releaseNotes></releaseNotes>
-    <copyright>(c) 2024 Stanislav Denisov</copyright>
+    <copyright>(c) 2025 Stanislav Denisov</copyright>
     <tags>networking udp protocol ipv4 ipv6 gamedev</tags>
     <tags>networking udp protocol ipv4 ipv6 gamedev</tags>
   </metadata>
   </metadata>
   <files>
   <files>

+ 1 - 1
Source/Managed/ENet.cs

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

+ 1 - 1
Source/Native/enet.h

@@ -31,7 +31,7 @@
 
 
 #define ENET_VERSION_MAJOR 2
 #define ENET_VERSION_MAJOR 2
 #define ENET_VERSION_MINOR 5
 #define ENET_VERSION_MINOR 5
-#define ENET_VERSION_PATCH 2
+#define ENET_VERSION_PATCH 3
 #define ENET_VERSION_CREATE(major, minor, patch) (((major) << 16) | ((minor) << 8) | (patch))
 #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_MAJOR(version) (((version) >> 16) & 0xFF)
 #define ENET_VERSION_GET_MINOR(version) (((version) >> 8) & 0xFF)
 #define ENET_VERSION_GET_MINOR(version) (((version) >> 8) & 0xFF)