Skip to content

Commit

Permalink
Bump the version
Browse files Browse the repository at this point in the history
  • Loading branch information
nxrighthere committed Feb 6, 2021
1 parent 3ad12a2 commit 19d53ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Managed/ENet-CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.1;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<Platforms>x64</Platforms>
<RootNamespace>ENet</RootNamespace>
<LangVersion>3</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Source/Managed/ENet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,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) | (4 << 8) | (5);
public const uint version = (2 << 16) | (4 << 8) | (6);

public static uint Time {
get {
Expand Down
2 changes: 1 addition & 1 deletion Source/Native/enet.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

#define ENET_VERSION_MAJOR 2
#define ENET_VERSION_MINOR 4
#define ENET_VERSION_PATCH 5
#define ENET_VERSION_PATCH 6
#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)
Expand Down

0 comments on commit 19d53ee

Please sign in to comment.