summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Engert <kaie@kuix.de>2021-03-16 15:57:29 +0100
committerKai Engert <kaie@kuix.de>2021-03-16 15:57:29 +0100
commitded6b49e05963ddd15ba056c1548882aa95883a5 (patch)
tree37bdc824e240ece337bdbb271f3b8340f87586ee
parent2c01ba3eb3a5655f3304bf48190ac0315acb07c9 (diff)
downloadnspr-hg-ded6b49e05963ddd15ba056c1548882aa95883a5.tar.gz
set version numbers to 4.31 beta
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--pr/include/prinit.h6
-rw-r--r--pr/tests/vercheck.c5
4 files changed, 8 insertions, 7 deletions
diff --git a/configure b/configure
index d3ad7cdf..1c18d4db 100755
--- a/configure
+++ b/configure
@@ -2486,7 +2486,7 @@ test -n "$target_alias" &&
program_prefix=${target_alias}-
MOD_MAJOR_VERSION=4
-MOD_MINOR_VERSION=30
+MOD_MINOR_VERSION=31
MOD_PATCH_VERSION=0
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
diff --git a/configure.in b/configure.in
index 00a1c010..dbf2c5ee 100644
--- a/configure.in
+++ b/configure.in
@@ -15,7 +15,7 @@ dnl ========================================================
dnl = Defaults
dnl ========================================================
MOD_MAJOR_VERSION=4
-MOD_MINOR_VERSION=30
+MOD_MINOR_VERSION=31
MOD_PATCH_VERSION=0
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
diff --git a/pr/include/prinit.h b/pr/include/prinit.h
index 1b2c4ddf..a8d3d036 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.30"
+#define PR_VERSION "4.31 Beta"
#define PR_VMAJOR 4
-#define PR_VMINOR 30
+#define PR_VMINOR 31
#define PR_VPATCH 0
-#define PR_BETA PR_FALSE
+#define PR_BETA PR_TRUE
/*
** PRVersionCheck
diff --git a/pr/tests/vercheck.c b/pr/tests/vercheck.c
index eb2b7a9f..bbb9b3da 100644
--- a/pr/tests/vercheck.c
+++ b/pr/tests/vercheck.c
@@ -42,6 +42,7 @@ static char *compatible_version[] = {
"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.25", "4,26", "4.27", "4.28", "4.29",
+ "4.30",
PR_VERSION
};
@@ -57,8 +58,8 @@ 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.30.1",
- "4.31", "4.31.1",
+ "4.31.1",
+ "4.32", "4.32.1",
"10.0", "11.1", "12.14.20"
};