diff --git a/src/veins/veins.h b/src/veins/veins.h index fe83427f0e..843c72214b 100644 --- a/src/veins/veins.h +++ b/src/veins/veins.h @@ -37,7 +37,7 @@ #define VEINS_VERSION_MAJOR 5 #define VEINS_VERSION_MINOR 0 #define VEINS_VERSION_PATCH 0 -#define VEINS_VERSION_ALPHA 1 +#define VEINS_VERSION_ALPHA 2 // Explicitly check OMNeT++ version number #if OMNETPP_VERSION < 0x500 diff --git a/subprojects/veins_catch/configure b/subprojects/veins_catch/configure index 56df512ba4..7a90ea51f8 100755 --- a/subprojects/veins_catch/configure +++ b/subprojects/veins_catch/configure @@ -53,7 +53,7 @@ run_lib_paths = [] # Add flags for Veins if options.veins: fname = os.path.join(options.veins, 'print-veins-version') - expect_version = ['5.0-alpha1'] + expect_version = ['5.0-alpha2'] try: print 'Running "%s" to determine Veins version.' % fname version = subprocess.check_output(['env', fname]).strip() diff --git a/subprojects/veins_inet/configure b/subprojects/veins_inet/configure index 24605aa9b7..dd5053f4ad 100755 --- a/subprojects/veins_inet/configure +++ b/subprojects/veins_inet/configure @@ -56,7 +56,7 @@ run_imgs = [os.path.join('images')] # Add flags for Veins if options.veins: fname = os.path.join(options.veins, 'print-veins-version') - expect_version = ['5.0-alpha1'] + expect_version = ['5.0-alpha2'] try: print 'Running "%s" to determine Veins version.' % fname version = subprocess.check_output(['env', fname]).strip() diff --git a/subprojects/veins_inet3/configure b/subprojects/veins_inet3/configure index f8470aa95e..126e9e0d2b 100755 --- a/subprojects/veins_inet3/configure +++ b/subprojects/veins_inet3/configure @@ -56,7 +56,7 @@ run_imgs = [os.path.join('images')] # Add flags for Veins if options.veins: fname = os.path.join(options.veins, 'print-veins-version') - expect_version = ['5.0-alpha1'] + expect_version = ['5.0-alpha2'] try: print 'Running "%s" to determine Veins version.' % fname version = subprocess.check_output(['env', fname]).strip() diff --git a/subprojects/veins_testsims/configure b/subprojects/veins_testsims/configure index 5d134f91c0..ff8eeef3a1 100755 --- a/subprojects/veins_testsims/configure +++ b/subprojects/veins_testsims/configure @@ -55,7 +55,7 @@ run_imgs = [os.path.join('images')] # Add flags for Veins if options.veins: fname = os.path.join(options.veins, 'print-veins-version') - expect_version = ['5.0-alpha1'] + expect_version = ['5.0-alpha2'] try: print 'Running "%s" to determine Veins version.' % fname version = subprocess.check_output(['env', fname]).strip()