[AMB] - version bump 0.13.802
authorKevron Rees <kevron.m.rees@intel.com>
Fri, 16 Jan 2015 00:13:56 +0000 (16:13 -0800)
committerKevron Rees <kevron.m.rees@intel.com>
Fri, 16 Jan 2015 00:13:56 +0000 (16:13 -0800)
CMakeLists.txt
README.md
RELEASE.md
ambd/main.cpp
ambd/pluginloader.cpp

index e462669..5bedeb9 100644 (file)
@@ -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}" )
index d80a61a..b32a3b2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # Automotive Message Broker Daemon {#ambd}
 
-Version 0.13.801
+Version 0.13.802
 
 ## Introduction
 
index 3de6748..892b96c 100644 (file)
@@ -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
index 11601df..d39c2d6 100644 (file)
@@ -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)
index c1e58f1..a6571f4 100644 (file)
@@ -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)