diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fd550c06..9ab03556 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,8 @@ # Release notes +- **0.6.0 WIP** + + - **0.5.0 May 17, 2020** - Major refactoring and rewrite of the library - Units are now independent from dimensions diff --git a/docs/usage.rst b/docs/usage.rst index 55102a66..a52d9de8 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -162,13 +162,13 @@ To use **mp-units** as a CMake imported library the following steps may be perfo project's top-level directory and add **mp-units** as a dependency to your Conan configuration file. - - for example to use **mp-units** testing/prerelease version ``0.5.0`` in case of *conanfile.txt* + - for example to use **mp-units** testing/prerelease version ``0.6.0`` in case of *conanfile.txt* it is enough for it to just contain the following lines: .. code-block:: ini [requires] - mp-units/0.5.0@mpusz/testing + mp-units/0.6.0@mpusz/testing 3. Import Conan dependencies definitions to the beginning of your top-level *CMakeLists.txt* file in your project: @@ -234,4 +234,4 @@ Uploading **mp-units** Package to the Conan Server .. code-block:: shell - conan upload -r --all mp-units/0.5.0@/ + conan upload -r --all mp-units/0.6.0@/ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4d5cb911..1da2d0fa 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -23,7 +23,7 @@ cmake_minimum_required(VERSION 3.12) project(mp-units - VERSION 0.5.0 + VERSION 0.6.0 LANGUAGES CXX )