Release 1.3.5.

This commit is contained in:
Tor Andersson
2024-06-20 13:01:31 +02:00
parent 40556b31c6
commit 0df0707f2f

2
mujs.h
View File

@@ -9,7 +9,7 @@ extern "C" {
#define JS_VERSION_MAJOR 1
#define JS_VERSION_MINOR 3
#define JS_VERSION_PATCH 4
#define JS_VERSION_PATCH 5
#define JS_VERSION (JS_VERSION_MAJOR * 10000 + JS_VERSION_MINOR * 100 + JS_VERSION_PATCH)
#define JS_CHECKVERSION(x,y,z) (JS_VERSION >= ((x) * 10000 + (y) * 100 + (z)))