Skip to content

Commit

Permalink
bump to 0.5.0 and bump jemalloc
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro authored and Rob Patro committed Mar 26, 2017
1 parent 3ce2389 commit eb7baad
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ enable_testing()

project (RapMap)

set(CPACK_PACKAGE_VERSION "0.4.0")
set(CPACK_PACKAGE_VERSION "0.5.0")
SET(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "4")
set(CPACK_PACKAGE_VERSION_MINOR "5")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(PROJECT_VERSION ${CPACK_PACKAGE_VERSION})
set(CPACK_GENERATOR "TGZ")
Expand Down Expand Up @@ -260,12 +260,12 @@ if (NOT HAVE_FAST_MALLOC)
message("==================================================================")
ExternalProject_Add(libjemalloc
DOWNLOAD_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external
DOWNLOAD_COMMAND curl -k -L https://github.com/COMBINE-lab/jemalloc/archive/4.4.0.tar.gz -o jemalloc-4.4.0.tar.gz &&
tar -xzf jemalloc-4.4.0.tar.gz
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/jemalloc-4.4.0
DOWNLOAD_COMMAND curl -k -L https://github.com/COMBINE-lab/jemalloc/archive/4.5.0.tar.gz -o jemalloc-4.5.0.tar.gz &&
tar -xzf jemalloc-4.5.0.tar.gz
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/jemalloc-4.5.0
BUILD_IN_SOURCE TRUE
INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/install
CONFIGURE_COMMAND sh -c "${JEMALLOC_FLAGS} ./autogen.sh --prefix=<INSTALL_DIR>"
CONFIGURE_COMMAND sh -c "${JEMALLOC_FLAGS} ./autogen.sh --disable-debug --prefix=<INSTALL_DIR>"
INSTALL_COMMAND cp -r lib <INSTALL_DIR>/ && cp -r include <INSTALL_DIR>/
)

Expand Down
6 changes: 3 additions & 3 deletions include/RapMapConfig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

namespace rapmap {
constexpr char majorVersion[] = "0";
constexpr char minorVersion[] = "4";
constexpr char patchVersion[] = "1";
constexpr char version [] = "0.4.1";
constexpr char minorVersion[] = "5";
constexpr char patchVersion[] = "0";
constexpr char version [] = "0.5.0";
constexpr uint32_t indexVersion = 3;
}

Expand Down

0 comments on commit eb7baad

Please sign in to comment.