Development switched to 0.6.0

This commit is contained in:
Mateusz Pusz
2020-05-17 11:47:01 +02:00
parent 18a61efa25
commit 6f48085ea3
3 changed files with 7 additions and 4 deletions

View File

@@ -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

View File

@@ -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 <remote-name> --all mp-units/0.5.0@<user>/<channel>
conan upload -r <remote-name> --all mp-units/0.6.0@<user>/<channel>

View File

@@ -23,7 +23,7 @@
cmake_minimum_required(VERSION 3.12)
project(mp-units
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)