Skip to content

Commit

Permalink
Release Veins 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sommer committed Oct 12, 2019
1 parent 4855180 commit 7663eeb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/veins/veins.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#define VEINS_VERSION_MAJOR 5
#define VEINS_VERSION_MINOR 0
#define VEINS_VERSION_PATCH 0
#define VEINS_VERSION_ALPHA 2
#define VEINS_VERSION_ALPHA 0

// Explicitly check OMNeT++ version number
#if OMNETPP_VERSION < 0x500
Expand Down
2 changes: 1 addition & 1 deletion subprojects/veins_catch/configure
Original file line number Diff line number Diff line change
Expand Up @@ -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-alpha2']
expect_version = ['5.0']
try:
print '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 @@ -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-alpha2']
expect_version = ['5.0']
try:
print 'Running "%s" to determine Veins version.' % fname
version = subprocess.check_output(['env', fname]).strip()
Expand Down
2 changes: 1 addition & 1 deletion subprojects/veins_inet3/configure
Original file line number Diff line number Diff line change
Expand Up @@ -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-alpha2']
expect_version = ['5.0']
try:
print 'Running "%s" to determine Veins version.' % fname
version = subprocess.check_output(['env', fname]).strip()
Expand Down
2 changes: 1 addition & 1 deletion subprojects/veins_testsims/configure
Original file line number Diff line number Diff line change
Expand Up @@ -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-alpha2']
expect_version = ['5.0']
try:
print 'Running "%s" to determine Veins version.' % fname
version = subprocess.check_output(['env', fname]).strip()
Expand Down

0 comments on commit 7663eeb

Please sign in to comment.