From c603b0de9c472ac45f835ee5cc5d844d34d8ece7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Tue, 7 Jan 2025 13:36:55 +0100 Subject: [PATCH] Release 2.5.0 --- include/enet.h | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/enet.h b/include/enet.h index 87dc304..74e5c9e 100644 --- a/include/enet.h +++ b/include/enet.h @@ -42,7 +42,7 @@ #include #define ENET_VERSION_MAJOR 2 -#define ENET_VERSION_MINOR 4 +#define ENET_VERSION_MINOR 5 #define ENET_VERSION_PATCH 0 #define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch)) #define ENET_VERSION_GET_MAJOR(version) (((version)>>16)&0xFF) diff --git a/package.json b/package.json index b07702a..2a14d97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "enet.c", - "version": "2.4.0", + "version": "2.5.0", "description": "ENet - Simple, lightweight and reliable UDP networking library written on pure C.", "main": "include/enet.h", "directories": {