Skip to content

Commit

Permalink
bump versions to 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sommer committed Dec 6, 2021
1 parent eb3d09c commit c5b4d7c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/veins/veins.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

// Version number of last release ("major.minor.patch") or an alpha version, if nonzero
#define VEINS_VERSION_MAJOR 5
#define VEINS_VERSION_MINOR 1
#define VEINS_VERSION_MINOR 2
#define VEINS_VERSION_PATCH 0
#define VEINS_VERSION_ALPHA 0

Expand Down
2 changes: 1 addition & 1 deletion subprojects/veins_catch/configure
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ run_lib_paths = []
# Add flags for Veins
if options.veins:
fname = os.path.join(options.veins, 'print-veins-version')
expect_version = [b'5.1']
expect_version = [b'5.2']
try:
info('Running "%s" to determine Veins version.' % fname)
version = subprocess.check_output(['env', fname]).strip()
Expand Down
2 changes: 1 addition & 1 deletion subprojects/veins_inet/configure
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,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 = [b'5.1']
expect_version = [b'5.2']
try:
info('Running "%s" to determine Veins version.' % fname)
version = subprocess.check_output(['env', fname]).strip()
Expand Down
4 changes: 2 additions & 2 deletions subprojects/veins_inet/src/veins_inet/veins_inet.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#include "inet/common/INETDefs.h"

// Version number of last release ("major.minor.patch") or an alpha version, if nonzero
#define VEINS_INET_VERSION_MAJOR 4
#define VEINS_INET_VERSION_MINOR 0
#define VEINS_INET_VERSION_MAJOR 5
#define VEINS_INET_VERSION_MINOR 2
#define VEINS_INET_VERSION_PATCH 0
#define VEINS_INET_VERSION_ALPHA 0

Expand Down
2 changes: 1 addition & 1 deletion subprojects/veins_inet3/configure
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,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 = [b'5.1']
expect_version = [b'5.2']
try:
info('Running "%s" to determine Veins version.' % fname)
version = subprocess.check_output(['env', fname]).strip()
Expand Down
4 changes: 2 additions & 2 deletions subprojects/veins_inet3/src/veins_inet/veins_inet.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#include "inet/common/INETDefs.h"

// Version number of last release ("major.minor.patch") or an alpha version, if nonzero
#define VEINS_INET_VERSION_MAJOR 3
#define VEINS_INET_VERSION_MINOR 0
#define VEINS_INET_VERSION_MAJOR 5
#define VEINS_INET_VERSION_MINOR 2
#define VEINS_INET_VERSION_PATCH 0
#define VEINS_INET_VERSION_ALPHA 0

Expand Down
2 changes: 1 addition & 1 deletion subprojects/veins_testsims/configure
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,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 = [b'5.1']
expect_version = [b'5.2']
try:
info('Running "%s" to determine Veins version.' % fname)
version = subprocess.check_output(['env', fname]).strip()
Expand Down

0 comments on commit c5b4d7c

Please sign in to comment.