summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Engert <kaie@kuix.de>2020-07-23 16:16:19 +0200
committerKai Engert <kaie@kuix.de>2020-07-23 16:16:19 +0200
commit7afcf703a41acc4e25a3eab5b3a87f8f1be9875a (patch)
treea0df3c97e31b66aaf9b832d45f016583290e3937
parent13a1c26a7f6374863b706cccded4c10177382374 (diff)
downloadnspr-hg-7afcf703a41acc4e25a3eab5b3a87f8f1be9875a.tar.gz
set version numbers to 4.25.1 beta
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--pr/include/prinit.h6
-rw-r--r--pr/tests/vercheck.c4
4 files changed, 7 insertions, 7 deletions
diff --git a/configure b/configure
index 2fe15c7c..118f3d21 100755
--- a/configure
+++ b/configure
@@ -2487,7 +2487,7 @@ test -n "$target_alias" &&
MOD_MAJOR_VERSION=4
MOD_MINOR_VERSION=25
-MOD_PATCH_VERSION=0
+MOD_PATCH_VERSION=1
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/configure.in b/configure.in
index 1c23fefa..faa3a2c8 100644
--- a/configure.in
+++ b/configure.in
@@ -16,7 +16,7 @@ dnl = Defaults
dnl ========================================================
MOD_MAJOR_VERSION=4
MOD_MINOR_VERSION=25
-MOD_PATCH_VERSION=0
+MOD_PATCH_VERSION=1
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/pr/include/prinit.h b/pr/include/prinit.h
index 617359e4..febe7b9f 100644
--- a/pr/include/prinit.h
+++ b/pr/include/prinit.h
@@ -31,11 +31,11 @@ PR_BEGIN_EXTERN_C
** The format of the version string is
** "<major version>.<minor version>[.<patch level>] [<Beta>]"
*/
-#define PR_VERSION "4.25"
+#define PR_VERSION "4.25.1 Beta"
#define PR_VMAJOR 4
#define PR_VMINOR 25
-#define PR_VPATCH 0
-#define PR_BETA PR_FALSE
+#define PR_VPATCH 1
+#define PR_BETA PR_TRUE
/*
** PRVersionCheck
diff --git a/pr/tests/vercheck.c b/pr/tests/vercheck.c
index 2fc0fabe..35c044bd 100644
--- a/pr/tests/vercheck.c
+++ b/pr/tests/vercheck.c
@@ -41,7 +41,7 @@ static char *compatible_version[] = {
"4.10.5", "4.10.6", "4.10.7", "4.10.8", "4.10.9",
"4.10.10", "4.11", "4.12", "4.13", "4.14", "4.15",
"4.16", "4.17", "4.18", "4.19", "4.20", "4.21", "4.22",
- "4.23", "4.24",
+ "4.23", "4.24", "4.25",
PR_VERSION
};
@@ -57,7 +57,7 @@ static char *incompatible_version[] = {
"3.0", "3.0.1",
"3.1", "3.1.1", "3.1.2", "3.1.3",
"3.5", "3.5.1",
- "4.25.1",
+ "4.25.2",
"4.26", "4.26.1",
"10.0", "11.1", "12.14.20"
};