From b9f5951d380ac720869f272ef45c9a9398d43c01 Mon Sep 17 00:00:00 2001 From: Carl Date: Fri, 2 Jun 2023 12:09:45 +0200 Subject: [PATCH 1/3] Add warning for breaking change in fpm --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 4d912394d..4ecf66080 100644 --- a/README.md +++ b/README.md @@ -199,6 +199,14 @@ To use `stdlib` within your `fpm` project, add the following lines to your `fpm. stdlib = { git="https://github.com/fortran-lang/stdlib", branch="stdlib-fpm" } ``` +> **Warning** +> +> Fpm 0.8.2 and later implements stdlib as a *metapackage*. +> To include the standard library metapackage, change the dependency to: +> `stdlib = "*"`. +> +> see also https://github.com/fortran-lang/fpm/pull/859 + ## Using stdlib in your project The stdlib project exports CMake package files and pkg-config files to make stdlib usable for other projects. From 5b1fe0541763085ca05d7ab2af3689465e0267a4 Mon Sep 17 00:00:00 2001 From: Carl Date: Mon, 5 Jun 2023 07:52:58 +0200 Subject: [PATCH 2/3] Apply suggestions from the discussion - use version 0.9.0 because this is the official release - use a link to the documentation instead of a GitHub discussion --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4ecf66080..55adefff1 100644 --- a/README.md +++ b/README.md @@ -201,11 +201,11 @@ stdlib = { git="https://github.com/fortran-lang/stdlib", branch="stdlib-fpm" } > **Warning** > -> Fpm 0.8.2 and later implements stdlib as a *metapackage*. +> Fpm 0.9.0 and later implements stdlib as a *metapackage*. > To include the standard library metapackage, change the dependency to: > `stdlib = "*"`. > -> see also https://github.com/fortran-lang/fpm/pull/859 +> see also https://fpm.fortran-lang.org/en/spec/metapackages.html ## Using stdlib in your project From 77ea99ce74a5842bfa972eed6751362baddae43b Mon Sep 17 00:00:00 2001 From: Carl Date: Mon, 5 Jun 2023 07:56:08 +0200 Subject: [PATCH 3/3] Change link to Markdown syntax --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 55adefff1..cfb5e912b 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ stdlib = { git="https://github.com/fortran-lang/stdlib", branch="stdlib-fpm" } > To include the standard library metapackage, change the dependency to: > `stdlib = "*"`. > -> see also https://fpm.fortran-lang.org/en/spec/metapackages.html +> [see also](https://fpm.fortran-lang.org/en/spec/metapackages.html) ## Using stdlib in your project