diff options
author | Kai Engert <kaie@kuix.de> | 2021-06-30 23:48:03 +0200 |
---|---|---|
committer | Kai Engert <kaie@kuix.de> | 2021-06-30 23:48:03 +0200 |
commit | 3e98ab4caf3785adb9232bb9ef65a5f5bc40eeb5 (patch) | |
tree | 2fa9959a30154eb5ea77d20804a1a4ef0f6650db | |
parent | 95bc3bf1109024afa8652e451a32c84a61e45d89 (diff) | |
download | nspr-hg-3e98ab4caf3785adb9232bb9ef65a5f5bc40eeb5.tar.gz |
set version number to 4.33 beta
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | pr/include/prinit.h | 6 | ||||
-rw-r--r-- | pr/tests/vercheck.c | 6 |
4 files changed, 8 insertions, 8 deletions
@@ -2486,7 +2486,7 @@ test -n "$target_alias" && program_prefix=${target_alias}- MOD_MAJOR_VERSION=4 -MOD_MINOR_VERSION=32 +MOD_MINOR_VERSION=33 MOD_PATCH_VERSION=0 NSPR_MODNAME=nspr20 _HAVE_PTHREADS= diff --git a/configure.in b/configure.in index d0c17693..081113c2 100644 --- a/configure.in +++ b/configure.in @@ -15,7 +15,7 @@ dnl ======================================================== dnl = Defaults dnl ======================================================== MOD_MAJOR_VERSION=4 -MOD_MINOR_VERSION=32 +MOD_MINOR_VERSION=33 MOD_PATCH_VERSION=0 NSPR_MODNAME=nspr20 _HAVE_PTHREADS= diff --git a/pr/include/prinit.h b/pr/include/prinit.h index 09f938b7..35ec8251 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.32" +#define PR_VERSION "4.33 Beta" #define PR_VMAJOR 4 -#define PR_VMINOR 32 +#define PR_VMINOR 33 #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 42718dfc..05c1c3ad 100644 --- a/pr/tests/vercheck.c +++ b/pr/tests/vercheck.c @@ -42,7 +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", "4.31", + "4.30", "4.31", "4.32", PR_VERSION }; @@ -58,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.32.1", - "4.33", "4.33.1", + "4.33.1", + "4.34", "4.34.1", "10.0", "11.1", "12.14.20" }; |