diff --git a/src/sbbs3/js_global.c b/src/sbbs3/js_global.c
index d24ebec3a1ac849dbca98aa006701645f60f348c..b847b44a2d936c2eab74304f71d99b07acdb6204 100644
--- a/src/sbbs3/js_global.c
+++ b/src/sbbs3/js_global.c
@@ -2590,8 +2590,8 @@ static jsSyncMethodSpec js_global_functions[] = {
 	},		
 	{"sleep",			js_mswait,			0,	JSTYPE_ALIAS },
 	{"mswait",			js_mswait,			0,	JSTYPE_NUMBER,	JSDOCSTR("[number milliseconds]")
-	,JSDOCSTR("millisecond wait/sleep routine (AKA sleep), returns number of elapsed clock ticks (in v3.12b+)")
-	,310
+	,JSDOCSTR("millisecond wait/sleep routine (AKA sleep), returns number of elapsed clock ticks (in v3.13)")
+	,313
 	},
 	{"yield",			js_yield,			0,	JSTYPE_VOID,	JSDOCSTR("[bool forced]")
 	,JSDOCSTR("release current thread time-slice, "
@@ -2830,8 +2830,8 @@ static jsSyncMethodSpec js_global_functions[] = {
 	},
 	{"flags_str",		js_flags_str,		1,	JSTYPE_UNDEF,	JSDOCSTR("[string text] or [number value]")
 	,JSDOCSTR("convert a string of security flags (letters) into their numeric value or vice-versa "
-	"(returns number OR string) - (added in v3.12b)")
-	,312
+	"(returns number OR string) - (added in v3.13)")
+	,313
 	},
 	{0}
 };
diff --git a/src/sbbs3/js_internal.c b/src/sbbs3/js_internal.c
index f59ac008ef12be420781005ee234bb9238d73cb3..bc758f68aea3dfcde7611e460fd1b52379b3cc45 100644
--- a/src/sbbs3/js_internal.c
+++ b/src/sbbs3/js_internal.c
@@ -353,14 +353,14 @@ static jsSyncMethodSpec js_functions[] = {
 	,311
 	},
 	{"on_exit",			js_on_exit,			1,	JSTYPE_VOID,	JSDOCSTR("string to_eval")
-	,JSDOCSTR("add a string to evaluate/execute (LIFO) upon script's termination (added in v3.12b)")
-	,312
+	,JSDOCSTR("add a string to evaluate/execute (LIFO) upon script's termination")
+	,313
 	},
 	{"report_error",	js_report_error,	1,	JSTYPE_VOID,	JSDOCSTR("error [, bool fatal]")
 	,JSDOCSTR("report an error using the standard JavaScript error reporting mechanism "
 	"(including script filename and line number), "
-	"if <i>fatal</i> is <i>true</i>, terminates script - (added in v3.12b)")
-	,312
+	"if <i>fatal</i> is <i>true</i>, immediately terminates script")
+	,313
 	},
 	{0}
 };
diff --git a/src/sbbs3/js_queue.c b/src/sbbs3/js_queue.c
index e7a7790388c5b522dd27a01b1f8ec0e7d197eff3..501838d694dd44a3de37f87d6e91d6686de82ab1 100644
--- a/src/sbbs3/js_queue.c
+++ b/src/sbbs3/js_queue.c
@@ -397,13 +397,13 @@ static jsSyncMethodSpec js_queue_functions[] = {
 	{"read",		js_read,		1,	JSTYPE_UNDEF,	"[name or timeout]"
 	,JSDOCSTR("read a value from the queue, if <i>name</i> not specified, reads next value "
 		"from the bottom of the queue (waiting up to <i>timeout</i> milliseconds)")
-	,312
+	,313
 	},
 	{"peek",		js_peek,		1,	JSTYPE_UNDEF,	"[timeout]"
 	,JSDOCSTR("peek at the value at the bottom of the queue, "
 		"wait up to <i>timeout</i> milliseconds for any value to be written "
 		"(default: <i>0</i>)")
-	,312
+	,313
 	},
 	{"write",		js_write,		1,	JSTYPE_BOOLEAN,	"value [,name]"
 	,JSDOCSTR("write a value (optionally named) to the queue")
diff --git a/src/sbbs3/sbbsdefs.h b/src/sbbs3/sbbsdefs.h
index 81bcbe76c369da7e0d80ab84095c45bf05fc1ff2..fc20cc020c7c8caa9e3ebcbf5c7e44d4ddc841f8 100644
--- a/src/sbbs3/sbbsdefs.h
+++ b/src/sbbs3/sbbsdefs.h
@@ -50,8 +50,8 @@
 /* Constants */
 /*************/
 
-#define VERSION 	"3.12"  /* Version: Major.minor  */
-#define REVISION	'b'     /* Revision: lowercase letter */
+#define VERSION 	"3.13"  /* Version: Major.minor  */
+#define REVISION	'a'     /* Revision: lowercase letter */
 
 #define VERSION_NOTICE		"Synchronet BBS for "PLATFORM_DESC\
 								"  Version " VERSION