chore: project version moved to 0.8.0

This commit is contained in:
Mateusz Pusz
2021-05-11 23:07:03 +02:00
parent e0009bdb0d
commit 43825a531f
4 changed files with 10 additions and 6 deletions

View File

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

View File

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

View File

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

View File

@@ -22,7 +22,7 @@
cmake_minimum_required(VERSION 3.15)
project(mp-units
VERSION 0.7.0
VERSION 0.8.0
LANGUAGES CXX
)