From 7617e3c374277a2b3515313813833acf2c0ace2a Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 17 Dec 2019 09:14:31 +0100 Subject: [PATCH] Installation documentation now used 0.5.0 --- doc/INSTALL.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/INSTALL.md b/doc/INSTALL.md index b573f519..52215520 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -26,18 +26,18 @@ steps may be done: ``` - add `units` as a dependency to your `conan` file. For example to use testing version of - `0.4.0` of `mp-units` add: + `0.5.0` of `mp-units` add: - `conanfile.txt` ```text [requires] - mp-units/0.4.0@mpusz/testing + mp-units/0.5.0@mpusz/testing ``` - `conanfile.py` ```python - requires = "mp-units/0.4.0@mpusz/testing" + requires = "mp-units/0.5.0@mpusz/testing" ``` - link your `cmake` target with units @@ -79,5 +79,5 @@ conan create . / -s cppstd=20 -b=outdated --all mp-units/0.4.0@/ +conan upload -r --all mp-units/0.5.0@/ ```