Skip to content

Commit

Permalink
release veins-5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sommer committed Dec 18, 2020
1 parent 398e924 commit 333c4f0
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 0
#define VEINS_VERSION_MINOR 1
#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.0']
expect_version = [b'5.1']
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 @@ -73,7 +73,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.0']
expect_version = [b'5.1']
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 @@ -31,8 +31,8 @@
#define VEINS_INET_VERSION_ALPHA 0

// Explicitly check Veins version number
#if !(VEINS_VERSION_MAJOR == 5 && VEINS_VERSION_MINOR >= 0)
#error Veins version 5.0 or compatible required
#if !(VEINS_VERSION_MAJOR == 5 && VEINS_VERSION_MINOR >= 1)
#error Veins version 5.1 or compatible required
#endif

// VEINS_INET_API macro. Allows us to use the same .h files for both building a .dll and linking against it
Expand Down
2 changes: 1 addition & 1 deletion subprojects/veins_inet3/configure
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,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.0']
expect_version = [b'5.1']
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 @@ -31,8 +31,8 @@
#define VEINS_INET_VERSION_ALPHA 0

// Explicitly check Veins version number
#if !(VEINS_VERSION_MAJOR == 5 && VEINS_VERSION_MINOR >= 0)
#error Veins version 5.0 or compatible required
#if !(VEINS_VERSION_MAJOR == 5 && VEINS_VERSION_MINOR >= 1)
#error Veins version 5.1 or compatible required
#endif

// VEINS_INET_API macro. Allows us to use the same .h files for both building a .dll and linking against it
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.0']
expect_version = [b'5.1']
try:
info('Running "%s" to determine Veins version.' % fname)
version = subprocess.check_output(['env', fname]).strip()
Expand Down

0 comments on commit 333c4f0

Please sign in to comment.