diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fe247e88..36b1f1d2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,4 +25,5 @@ Until then, please code alike what is there already: ## Backward Compatibility -Before submission, please remember to check if the code compiles fine on all the supported compilers (gcc-10 and MSVC so far). +Before submission, please remember to check if the code compiles fine on all the supported compilers +(gcc-10 and Visual Studio 16 so far). diff --git a/conanfile.py b/conanfile.py index 00fc4e8e..76b05e1c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -70,7 +70,7 @@ class UnitsConan(ConanFile): raise ConanInvalidConfiguration("mp-units requires at least g++-10") elif compiler == "Visual Studio": if version < "16": - raise ConanInvalidConfiguration("mp-units requires at least MSVC 16") + raise ConanInvalidConfiguration("mp-units requires at least Visual Studio 16") else: raise ConanInvalidConfiguration("mp-units is supported only by gcc and Visual Studio so far") check_min_cppstd(self, "20") diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index b427a14b..714eb8b9 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,7 +2,7 @@ - **0.6.0 WIP** - gcc-9 is no longer supported (at least gcc-10 is required) - - MSVC 16.7 support added + - Visual Studio 16.7 support added - linear_algebra updated to 0.7.0/stable - fmt updated to 7.0.3 - range-v3 updated to 0.11.0 diff --git a/docs/index.rst b/docs/index.rst index 927a7f47..2132f432 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -16,7 +16,7 @@ with a permissive `MIT license