From: Derek Barnett Date: Mon, 19 Nov 2012 17:24:55 +0000 (-0500) Subject: Version 2.2.1 X-Git-Url: https://git.donarmstrong.com/?p=bamtools.git;a=commitdiff_plain;h=f72cee551e41b878ae83530e17d7e441e5ba2558 Version 2.2.1 * Added: BamAlignment::GetTagNames() BamReader::GetConstSamHeader() * Fixed: 'bamtools convert' - issues with unsigned char data in tags empty quality string handling in BamWriter --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 944e01d..27deb55 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ ensure_out_of_source_build( " # set BamTools version information set( BamTools_VERSION_MAJOR 2 ) set( BamTools_VERSION_MINOR 2 ) -set( BamTools_VERSION_BUILD 0 ) +set( BamTools_VERSION_BUILD 1 ) # set our library and executable destination dirs set( EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/bin" ) diff --git a/docs/Doxyfile b/docs/Doxyfile index caf5f2c..af6daab 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = BamTools # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 2.1.1 +PROJECT_NUMBER = 2.2.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/src/api/CMakeLists.txt b/src/api/CMakeLists.txt index 5b66ec0..321be23 100644 --- a/src/api/CMakeLists.txt +++ b/src/api/CMakeLists.txt @@ -34,7 +34,7 @@ set( BamToolsAPISources # create main BamTools API shared library add_library( BamTools SHARED ${BamToolsAPISources} ) set_target_properties( BamTools PROPERTIES - SOVERSION "2.2.0" + SOVERSION "2.2.1" OUTPUT_NAME "bamtools" ) # create main BamTools API static library diff --git a/src/toolkit/CMakeLists.txt b/src/toolkit/CMakeLists.txt index 1f198b3..d9c92d4 100644 --- a/src/toolkit/CMakeLists.txt +++ b/src/toolkit/CMakeLists.txt @@ -31,7 +31,7 @@ add_executable( bamtools_cmd # set BamTools application properties set_target_properties( bamtools_cmd PROPERTIES - VERSION 2.2.0 + VERSION 2.2.1 OUTPUT_NAME "bamtools" ) # make version info available in application