Make a patch release for important iterator bug fix.

This commit is contained in:
Tor Andersson
2022-10-20 18:19:41 +02:00
parent 8b5ba20957
commit 69e2767d0a
+1 -1
View File
@@ -9,7 +9,7 @@ extern "C" {
#define JS_VERSION_MAJOR 1
#define JS_VERSION_MINOR 3
#define JS_VERSION_PATCH 0
#define JS_VERSION_PATCH 1
#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)))