diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ce5f846cc69cd88ad2780be4dcc2e88b15c8dce..d52f1f0f568bbd418ab86b15f15e2200afb2b026 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ MACRO_ENSURE_OUT_OF_SOURCE_BUILD( "In-source build error." ) project(packet) set(packet_MAJOR_VERSION 4) -set(packet_MINOR_VERSION 3) +set(packet_MINOR_VERSION 5) set(packet_PATCH_VERSION 0) set(packet_VERSION ${packet_MAJOR_VERSION}.${packet_MINOR_VERSION}.${packet_PATCH_VERSION}) diff --git a/ChangeLog b/ChangeLog index 198f537aa4cf2c442165e2ae27853d419a380e3a..01867f3bf63bdfccb450c237ac9b786849f80b8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,29 @@ +2015-08-10 Andrea Bulgarelli <bulgarelli@iasfbo.inaf.it>, Andrea Zoli <zoli@iasfbo.inaf.it> +TAG v4.5.0 ++ Comment debug print. ++ Fix CMakeLists.txt ++ Add InputFile::getpos(). ++ Fix metadata loading for rblocks with a fixed number of instances. ++ Store fields section offsets. ++ Fix SDFBlock xml rblock name allocation. ++ Fix -Wextra warnings. ++ Fix src/CMakeLists.txt to work from a different source rootdir. ++ Install the static library with cmake. ++ Add cmake build system. ++ Remove pedantic warnings. ++ Throw exception on chdir error. ++ Fix xml parsing of SDFBlocks. ++ Example with iteration on blocks and fields ++ Added Packet::pheader(), Packet::dfheader(), Packet::sdf(), byte* ++ PartOfPacket::getBytes() as shortcuts ++ Adds xml examples ++ Makefile for Doxygen issues ++ Fix lot of warnings ++ Remove XmlConfig class. ++ Parsing directly XML without conversions. ++ Fix makefile output. ++ Rename SharedPtr include guards. + 2014-07-24 Andrea Bulgarelli <bulgarelli@iasfbo.inaf.it>, Andrea Zoli <zoli@iasfbo.inaf.it> TAG v4.3.2 + Fixed Makefile for parallel build. diff --git a/Doxyfile b/Doxyfile index 3c798c937a8dbdd4fc1bd9b77a78c4868cf3ba3d..3015bc786d6dd51dfd30f9b5d412927a31da4fb5 100644 --- a/Doxyfile +++ b/Doxyfile @@ -2,7 +2,7 @@ # General configuration options #--------------------------------------------------------------------------- PROJECT_NAME = PacketLib -PROJECT_NUMBER = 4.3.2 +PROJECT_NUMBER = 4.5.0 OUTPUT_DIRECTORY = ref OUTPUT_LANGUAGE = English EXTRACT_ALL = YES diff --git a/include/PlVersion.h b/include/PlVersion.h index d9fa948c87d91ac1dc48639648b5d83959f2b24d..9d712fa91a71519e773a556b3bfb472a02a47dbc 100644 --- a/include/PlVersion.h +++ b/include/PlVersion.h @@ -1 +1 @@ -#define VERSION 4.3.2 +#define VERSION 4.5.0