Skip to content

Commit

Permalink
meta: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
inlife committed Jan 20, 2021
1 parent 2c122c0 commit c187e25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/enet.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
#include <time.h>

#define ENET_VERSION_MAJOR 2
#define ENET_VERSION_MINOR 2
#define ENET_VERSION_PATCH 1
#define ENET_VERSION_MINOR 3
#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)
#define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enet.c",
"version": "2.2.0",
"version": "2.3.0",
"description": "ENet - Simple, lightweight and reliable UDP networking library written on pure C.",
"main": "include/enet.h",
"directories": {
Expand Down

0 comments on commit c187e25

Please sign in to comment.