summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevron Rees <kevron.m.rees@intel.com>2015-01-15 16:13:56 -0800
committerKevron Rees <kevron.m.rees@intel.com>2015-01-15 16:13:56 -0800
commit500ec0dc8f39fa712163cb504ca6c18a17a2234e (patch)
tree21b41aa6af8fcbe26b7fa3029fd86fa956ad52eb
parent8a807772680ae8f253281238dec5eaadcf5beb19 (diff)
downloadautomotive-message-broker-500ec0dc8f39fa712163cb504ca6c18a17a2234e.tar.gz
[AMB] - version bump 0.13.802
-rw-r--r--CMakeLists.txt5
-rw-r--r--README.md2
-rw-r--r--RELEASE.md2
-rw-r--r--ambd/main.cpp4
-rw-r--r--ambd/pluginloader.cpp1
5 files changed, 7 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e4626693..5bedeb99 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -10,15 +10,16 @@ set(PROJECT_NAME "automotive-message-broker")
set(PROJECT_PRETTY_NAME "Automotive Message Broker")
set(PROJECT_SERIES "0.14")
set(PROJECT_MAJOR_VERSION "0.13")
-set(PROJECT_MINOR_VERSION "801")
+set(PROJECT_MINOR_VERSION "802")
set(PROJECT_VERSION "${PROJECT_MAJOR_VERSION}.${PROJECT_MINOR_VERSION}")
set(PROJECT_CODENAME "74A")
set(PROJECT_QUALITY "alpha")
add_definitions(-DPROJECT_VERSION="${PROJECT_VERSION}")
-add_definitions(-DPROJECT_NAME="${PROJECT_NAME}")
+add_definitions(-DPROJECT_NAME="${PROJECT_PRETTY_NAME}")
add_definitions(-DPROJECT_CODENAME="${PROJECT_CODENAME}")
add_definitions(-DPROJECT_QUALITY="${PROJECT_QUALITY}")
+add_definitions(-DPROJECT_SERIES="${PROJECT_SERIES}")
set (LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)" )
set (LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/${CMAKE_LIBRARY_ARCHITECTURE}" )
diff --git a/README.md b/README.md
index d80a61a8..b32a3b29 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Automotive Message Broker Daemon {#ambd}
-Version 0.13.801
+Version 0.13.802
## Introduction
diff --git a/RELEASE.md b/RELEASE.md
index 3de6748a..892b96c8 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -1,5 +1,5 @@
# AMB Release Notes {#release_notes}
-Version: 0.13.801
+Version: 0.13.802
## New features:
- [DBus] some classes for exporting custom interfaces moved to plugins-common
diff --git a/ambd/main.cpp b/ambd/main.cpp
index 11601df2..d39c2d68 100644
--- a/ambd/main.cpp
+++ b/ambd/main.cpp
@@ -79,8 +79,8 @@ static const struct option longopts[] = {
void printVersion()
{
- DebugOut(0)<<PROJECT_NAME<<endl;
- DebugOut(0)<<"Version: "<<PROJECT_VERSION<<" ( "<<PROJECT_CODENAME<<" "<<PROJECT_QUALITY<<" )"<<endl;
+ DebugOut(0) << PROJECT_NAME << endl;
+ DebugOut(0)<<"Version: " << PROJECT_VERSION<<" Series: " << PROJECT_SERIES <<" (" << PROJECT_CODENAME<<" " << PROJECT_QUALITY << ")" << endl;
}
static void glibLogHandler(const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data)
diff --git a/ambd/pluginloader.cpp b/ambd/pluginloader.cpp
index c1e58f1e..a6571f40 100644
--- a/ambd/pluginloader.cpp
+++ b/ambd/pluginloader.cpp
@@ -132,7 +132,6 @@ PluginLoader::PluginLoader(string configFile, int argc, char** argv): f_create(N
if (!list.size())
{
DebugOut() << "Error getting list for " << q << endl;
- throw std::runtime_error("Error getting sources list");
}
for(auto src : list)