diff --git a/CMakeLists.txt b/CMakeLists.txt index 74559cb..d48a243 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.22) project(SLB4MPI - VERSION 0.0.1 + VERSION 0.0.2 DESCRIPTION "Simple load balancers for MPI") option(SLB4MPI_ENABLE_CXX "Enable C++-implemented load balancer" OFF) diff --git a/README.md b/README.md index 9d61ae8..bc591bd 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,7 @@ To use SLB4MPI from your project, add the following lines into your `CMakeLists. include(FetchContent) FetchContent_Declare(SLB4MPI GIT_REPOSITORY https://github.com/foxtran/SLB4MPI.git - GIT_TAG 0.0.1 + GIT_TAG 0.0.2 ) FetchContent_MakeAvailable(SLB4MPI) FetchContent_GetProperties(SLB4MPI SOURCE_DIR SLB4MPI_SOURCE_DIR)