From 43825a531fa91501277161fefd94c50a3cf0ea96 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 11 May 2021 23:07:03 +0200 Subject: [PATCH] chore: project version moved to 0.8.0 --- README.md | 4 ++-- docs/CHANGELOG.md | 4 ++++ docs/usage.rst | 6 +++--- src/CMakeLists.txt | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d9443a3f..4899d9d7 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ [![Conan CI](https://img.shields.io/github/workflow/status/mpusz/units/Conan%20CI/master?label=Conan%20CI)](https://github.com/mpusz/units/actions?query=workflow%3A%22Conan%20CI%22+branch%3Amaster) [![CMake CI](https://img.shields.io/github/workflow/status/mpusz/units/CMake%20Test%20Package%20CI/master?label=CMake%20CI)](https://github.com/mpusz/units/actions?query=workflow%3A%22CMake+Test+Package+CI%22+branch%3Amaster) [![GitHub Workflow Documentation](https://img.shields.io/github/workflow/status/mpusz/units/Documentation/master?label=Documentation%20CI)](https://github.com/mpusz/units/actions?query=workflow%3ADocumentation+branch%3Amaster) -[![Conan stable](https://img.shields.io/badge/ConanCenter-0.6.0%3Astable-blue)](https://conan.io/center/mp-units) -[![Conan testing](https://img.shields.io/badge/mpusz.jfrog.io-0.7.0%3Atesting-blue)](https://mpusz.jfrog.io/ui/packages/conan:%2F%2Fmp-units/0.7.0) +[![Conan stable](https://img.shields.io/badge/ConanCenter-0.7.0%3Astable-blue)](https://conan.io/center/mp-units) +[![Conan testing](https://img.shields.io/badge/mpusz.jfrog.io-0.8.0%3Atesting-blue)](https://mpusz.jfrog.io/ui/packages/conan:%2F%2Fmp-units/0.8.0) # `mp-units` - A Units Library for C++ diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index a701abbe..c24ee230 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,8 @@ # Release notes +- **0.8.0 WIP** + + - **0.7.0 May 11, 2021** - (!) refactor: `ScalableNumber` renamed to `Representation` - (!) refactor: output stream operators moved to the `units/quantity_io.h` header file @@ -46,6 +49,7 @@ - build: Conan generator switched to `cmake_find_package_multi` - build: Conan CMakeToolchain support added - build: CMake scripts cleanup + - build: ccache support added - ci: CI switched from Travis CI to GitHub Actions - **0.6.0 September 13, 2020** diff --git a/docs/usage.rst b/docs/usage.rst index a3f2a2fe..c753f22f 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -247,7 +247,7 @@ library release the following steps may be performed: :caption: conanfile.txt [requires] - mp-units/0.6.0 + mp-units/0.7.0 [generators] CMakeToolchain @@ -313,7 +313,7 @@ differences: :caption: conanfile.txt [requires] - mp-units/0.7.0@mpusz/testing + mp-units/0.8.0@mpusz/testing [generators] CMakeToolchain @@ -401,4 +401,4 @@ Uploading **mp-units** Package to the Conan Server .. code-block:: shell - conan upload -r --all mp-units/0.7.0@/ + conan upload -r --all mp-units/0.8.0@/ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5a1fd389..fdc84cb4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -22,7 +22,7 @@ cmake_minimum_required(VERSION 3.15) project(mp-units - VERSION 0.7.0 + VERSION 0.8.0 LANGUAGES CXX )