From 614d33a61d1e8641152d5016be934d720459da3b Mon Sep 17 00:00:00 2001
From: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com>
Date: Sun, 12 Dec 2021 19:55:58 +0100
Subject: [PATCH] Use HEAD to reference default branch
- reference HEAD commit instead of branch name
---
.github/workflows/buildPRPreview.yml | 2 +-
.github/workflows/buildSite.yml | 6 +++---
_layouts/code_category.html | 2 +-
_posts/2020-05-01-Fortran-Newsletter-May-2020.md | 6 +++---
.../2020-06-01-Fortran-Newsletter-June-2020.md | 8 ++++----
.../2020-07-01-Fortran-Newsletter-July-2020.md | 4 ++--
.../2020-08-01-Fortran-Newsletter-August-2020.md | 4 ++--
...20-09-01-Fortran-Newsletter-September-2020.md | 4 ++--
...2020-10-01-Fortran-Newsletter-October-2020.md | 4 ++--
...020-11-01-Fortran-Newsletter-November-2020.md | 4 ++--
...020-12-01-Fortran-Newsletter-December-2020.md | 4 ++--
...2021-01-01-Fortran-Newsletter-January-2021.md | 4 ++--
...021-02-01-Fortran-Newsletter-February-2021.md | 4 ++--
.../2021-03-01-Fortran-Newsletter-March-2021.md | 4 ++--
.../2021-04-01-Fortran-Newsletter-April-2021.md | 4 ++--
_posts/2021-05-01-Fortran-Newsletter-May-2021.md | 4 ++--
.../2021-06-01-Fortran-Newsletter-June-2021.md | 4 ++--
.../2021-07-01-Fortran-Newsletter-July-2021.md | 4 ++--
.../2021-08-01-Fortran-Newsletter-August-2021.md | 4 ++--
...21-09-01-Fortran-Newsletter-September-2021.md | 4 ++--
...2021-10-01-Fortran-Newsletter-October-2021.md | 6 +++---
...021-11-01-Fortran-Newsletter-November-2021.md | 2 +-
...021-12-01-Fortran-Newsletter-December-2021.md | 2 +-
.../data-fortran-lang-fortran-lang.org.json | 2 +-
.../github_stats_data/data-fortran-lang-fpm.json | 2 +-
.../data-fortran-lang-stdlib.json | 2 +-
.../data-j3-fortran-fortran_proposals.json | 2 +-
community/index.html | 16 ++++++++--------
packages/index.html | 4 ++--
packages/search.html | 2 +-
30 files changed, 62 insertions(+), 62 deletions(-)
diff --git a/.github/workflows/buildPRPreview.yml b/.github/workflows/buildPRPreview.yml
index 6f6b4672a..4a6e37854 100644
--- a/.github/workflows/buildPRPreview.yml
+++ b/.github/workflows/buildPRPreview.yml
@@ -14,7 +14,7 @@ permissions: read-all
env:
SRC_DIR: src
PUBLISH_DIR: gh-pages
- FPM_INDEX: "https://raw.githubusercontent.com/fortran-lang/fpm-registry/master/index.json"
+ FPM_INDEX: "https://raw.githubusercontent.com/fortran-lang/fpm-registry/HEAD/index.json"
jobs:
build:
diff --git a/.github/workflows/buildSite.yml b/.github/workflows/buildSite.yml
index ce53b2cba..0aca2befd 100644
--- a/.github/workflows/buildSite.yml
+++ b/.github/workflows/buildSite.yml
@@ -12,7 +12,7 @@ on:
env:
SRC_DIR: src
PUBLISH_DIR: gh-pages
- FPM_INDEX: "https://raw.githubusercontent.com/fortran-lang/fpm-registry/master/index.json"
+ FPM_INDEX: "https://raw.githubusercontent.com/fortran-lang/fpm-registry/HEAD/index.json"
jobs:
build:
@@ -20,8 +20,8 @@ jobs:
steps:
- # Checkout master branch into SRC_DIR
- - name: Checkout master
+ # Checkout default branch into SRC_DIR
+ - name: Checkout default branch
uses: actions/checkout@v2
with:
path: ${{env.SRC_DIR}}
diff --git a/_layouts/code_category.html b/_layouts/code_category.html
index cab7cc122..1db417798 100644
--- a/_layouts/code_category.html
+++ b/_layouts/code_category.html
@@ -116,7 +116,7 @@
See
-
+
here for how to get your project listed.
diff --git a/_posts/2020-05-01-Fortran-Newsletter-May-2020.md b/_posts/2020-05-01-Fortran-Newsletter-May-2020.md
index 906ef9e43..18e0c41c0 100644
--- a/_posts/2020-05-01-Fortran-Newsletter-May-2020.md
+++ b/_posts/2020-05-01-Fortran-Newsletter-May-2020.md
@@ -37,11 +37,11 @@ Here's what's new in Fortran Standard Library:
* [#172](https://github.com/fortran-lang/stdlib/pull/172)
New function `cov` in the `stdlib_experimental_stats` module to compute covariance of array elements.
-Read the full specification [here](https://github.com/fortran-lang/stdlib/blob/master/src/stdlib_experimental_stats.md#cov---covariance-of-array-elements).
+Read the full specification [here](https://github.com/fortran-lang/stdlib/blob/HEAD/src/stdlib_experimental_stats.md#cov---covariance-of-array-elements).
* [#168](https://github.com/fortran-lang/stdlib/pull/168)
Specify recommended order of attributes for dummy arguments in the
-[Stdlib style guide](https://github.com/fortran-lang/stdlib/blob/master/STYLE_GUIDE.md).
+[Stdlib style guide](https://github.com/fortran-lang/stdlib/blob/HEAD/STYLE_GUIDE.md).
* [#173](https://github.com/fortran-lang/stdlib/pull/173)
Minor bug fix.
@@ -62,7 +62,7 @@ Specifically:
* FPM can build an executable program, a library, or a combination of both.
* Currently only gfortran is supported as the compiler backend. FPM will suport other compilers soon.
-Read the [FPM packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md)
+Read the [FPM packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md)
to learn how to build your package with FPM.
FPM is still in very early development, and we need as much help as we can get.
diff --git a/_posts/2020-06-01-Fortran-Newsletter-June-2020.md b/_posts/2020-06-01-Fortran-Newsletter-June-2020.md
index 6091800f3..9ae38fefa 100644
--- a/_posts/2020-06-01-Fortran-Newsletter-June-2020.md
+++ b/_posts/2020-06-01-Fortran-Newsletter-June-2020.md
@@ -85,7 +85,7 @@ that uses this functionality.
fpm is still in very early development, and we need as much help as we can get.
Here's how you can help today:
-* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm.
+* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm.
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm.
* Improve the documentation.
@@ -113,10 +113,10 @@ join the [Discourse](https://fortran-lang.discourse.group) to stay tuned.
Virtual participation is enabled for both attendees and speakers.
Registration is free and due by June 1, 2020.
There are quite a few submissions from the fortran-lang community:
-A talk on [stdlib](https://github.com/fortran-lang/talks/tree/master/FortranCon2020-stdlib) by Jeremie Vandenplas,
-one about the [Fortran Package Manager (fpm)](https://github.com/fortran-lang/talks/tree/master/FortranCon2020-fpm) by Brad Richardson,
+A talk on [stdlib](https://github.com/fortran-lang/talks/tree/HEAD/FortranCon2020-stdlib) by Jeremie Vandenplas,
+one about the [Fortran Package Manager (fpm)](https://github.com/fortran-lang/talks/tree/HEAD/FortranCon2020-fpm) by Brad Richardson,
a talk on [LFortran compiler](https://gitlab.com/lfortran/talks/fortrancon-2020-talk) by Ondřej Čertík,
-as well as one about [building the Fortran community](https://github.com/fortran-lang/talks/tree/master/FortranCon2020-community)
+as well as one about [building the Fortran community](https://github.com/fortran-lang/talks/tree/HEAD/FortranCon2020-community)
by Milan Curcic.
* J3/WG5 joint meeting, originally slated for October 12-16 in Las Vegas, Nevada, has been [cancelled](https://mailman.j3-fortran.org/pipermail/j3/2020-May/012034.html).
However, the work on proposals for the Fortran Standard doesn't stop.
diff --git a/_posts/2020-07-01-Fortran-Newsletter-July-2020.md b/_posts/2020-07-01-Fortran-Newsletter-July-2020.md
index 7f689c44d..f6c046e28 100644
--- a/_posts/2020-07-01-Fortran-Newsletter-July-2020.md
+++ b/_posts/2020-07-01-Fortran-Newsletter-July-2020.md
@@ -31,7 +31,7 @@ See the corresponding community poll and discussion on [Discourse](https://fortr
* [#112](https://github.com/fortran-lang/fortran-lang.org/issues/112): Plan for core language tutorials.
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
__Did you know__ you don't need to know HTML or any fancy languages to contribute to the website;
all of the online tutorials and most of the website content are written in [markdown](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet), a simple markup language for formatting text - don't worry if you haven't used it before, it's very easy to pick up!
@@ -77,7 +77,7 @@ Minor improvements to the README.
fpm is still in very early development, and we need as much help as we can get.
Here's how you can help today:
-* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm.
+* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm.
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm.
* Improve the documentation.
diff --git a/_posts/2020-08-01-Fortran-Newsletter-August-2020.md b/_posts/2020-08-01-Fortran-Newsletter-August-2020.md
index 1d7521f50..5e4c052a0 100644
--- a/_posts/2020-08-01-Fortran-Newsletter-August-2020.md
+++ b/_posts/2020-08-01-Fortran-Newsletter-August-2020.md
@@ -33,7 +33,7 @@ Ongoing work:
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -70,7 +70,7 @@ We merged several pull requests toward the Fortran fpm implementation. The Haske
fpm is still in very early development, and we need as much help as we can get.
Here's how you can help today:
-* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm.
+* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm.
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm.
* Improve the documentation.
diff --git a/_posts/2020-09-01-Fortran-Newsletter-September-2020.md b/_posts/2020-09-01-Fortran-Newsletter-September-2020.md
index e57e4ddd3..22ebf03f7 100644
--- a/_posts/2020-09-01-Fortran-Newsletter-September-2020.md
+++ b/_posts/2020-09-01-Fortran-Newsletter-September-2020.md
@@ -26,7 +26,7 @@ Ongoing work:
discussed in [issues](https://github.com/fortran-lang/benchmarks/issues) there
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -53,7 +53,7 @@ Implementing internal dependencies and build backend in the Fortran fpm
fpm is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm.
+* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm.
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
* Improve the documentation.
diff --git a/_posts/2020-10-01-Fortran-Newsletter-October-2020.md b/_posts/2020-10-01-Fortran-Newsletter-October-2020.md
index 37fb665cd..30c6b912c 100644
--- a/_posts/2020-10-01-Fortran-Newsletter-October-2020.md
+++ b/_posts/2020-10-01-Fortran-Newsletter-October-2020.md
@@ -26,7 +26,7 @@ Ongoing work:
discussed in [issues](https://github.com/fortran-lang/benchmarks/issues) there.
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -90,7 +90,7 @@ Work in progress:
fpm is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm.
+* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm.
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
* Improve the documentation.
diff --git a/_posts/2020-11-01-Fortran-Newsletter-November-2020.md b/_posts/2020-11-01-Fortran-Newsletter-November-2020.md
index 73a5c3a4b..a1ae4a2e7 100644
--- a/_posts/2020-11-01-Fortran-Newsletter-November-2020.md
+++ b/_posts/2020-11-01-Fortran-Newsletter-November-2020.md
@@ -41,7 +41,7 @@ In-depth introduction for Fortran with Make.
Updating the mini-book on building programs.
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -88,7 +88,7 @@ Work in progress:
fpm is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm.
+* Try to use it. Does it work? No? Let us know! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm.
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
* Improve the documentation.
diff --git a/_posts/2020-12-01-Fortran-Newsletter-December-2020.md b/_posts/2020-12-01-Fortran-Newsletter-December-2020.md
index 6b862c2d4..b63de6fe8 100644
--- a/_posts/2020-12-01-Fortran-Newsletter-December-2020.md
+++ b/_posts/2020-12-01-Fortran-Newsletter-December-2020.md
@@ -28,7 +28,7 @@ Ongoing work:
In-depth introduction for Fortran with Make.
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -95,7 +95,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
* Improve the documentation.
diff --git a/_posts/2021-01-01-Fortran-Newsletter-January-2021.md b/_posts/2021-01-01-Fortran-Newsletter-January-2021.md
index 69faec52b..8f64bcb1b 100644
--- a/_posts/2021-01-01-Fortran-Newsletter-January-2021.md
+++ b/_posts/2021-01-01-Fortran-Newsletter-January-2021.md
@@ -41,7 +41,7 @@ We are searching for a representative Fortran code snippet for the website and a
Add links to fpm contributing guidelines
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -172,7 +172,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-02-01-Fortran-Newsletter-February-2021.md b/_posts/2021-02-01-Fortran-Newsletter-February-2021.md
index f251b47a8..6607bd35e 100644
--- a/_posts/2021-02-01-Fortran-Newsletter-February-2021.md
+++ b/_posts/2021-02-01-Fortran-Newsletter-February-2021.md
@@ -28,7 +28,7 @@ Ongoing work:
We are searching for a representative Fortran code snippet for the website and are looking forward to suggestions.
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -120,7 +120,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-03-01-Fortran-Newsletter-March-2021.md b/_posts/2021-03-01-Fortran-Newsletter-March-2021.md
index bc0b18da2..dc2a30124 100644
--- a/_posts/2021-03-01-Fortran-Newsletter-March-2021.md
+++ b/_posts/2021-03-01-Fortran-Newsletter-March-2021.md
@@ -38,7 +38,7 @@ Ongoing work:
Correct subtitle of setting up your os
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -113,7 +113,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-04-01-Fortran-Newsletter-April-2021.md b/_posts/2021-04-01-Fortran-Newsletter-April-2021.md
index 296f5d44b..3823f4868 100644
--- a/_posts/2021-04-01-Fortran-Newsletter-April-2021.md
+++ b/_posts/2021-04-01-Fortran-Newsletter-April-2021.md
@@ -39,7 +39,7 @@ Ongoing work:
Include learn resources to online courses
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -154,7 +154,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-05-01-Fortran-Newsletter-May-2021.md b/_posts/2021-05-01-Fortran-Newsletter-May-2021.md
index c75842bc6..a9cd80866 100644
--- a/_posts/2021-05-01-Fortran-Newsletter-May-2021.md
+++ b/_posts/2021-05-01-Fortran-Newsletter-May-2021.md
@@ -30,7 +30,7 @@ Ongoing work:
Transferring fortran90.org “Fortran Best Practise” into a mini-book
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -135,7 +135,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-06-01-Fortran-Newsletter-June-2021.md b/_posts/2021-06-01-Fortran-Newsletter-June-2021.md
index cdd91d8f7..15519f785 100644
--- a/_posts/2021-06-01-Fortran-Newsletter-June-2021.md
+++ b/_posts/2021-06-01-Fortran-Newsletter-June-2021.md
@@ -34,7 +34,7 @@ Ongoing work:
Internationalization for fortran-lang
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -117,7 +117,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-07-01-Fortran-Newsletter-July-2021.md b/_posts/2021-07-01-Fortran-Newsletter-July-2021.md
index 2ba98e5c0..c7725a074 100644
--- a/_posts/2021-07-01-Fortran-Newsletter-July-2021.md
+++ b/_posts/2021-07-01-Fortran-Newsletter-July-2021.md
@@ -38,7 +38,7 @@ Ongoing work:
Draft: Internationalization for fortran-lang
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -151,7 +151,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-08-01-Fortran-Newsletter-August-2021.md b/_posts/2021-08-01-Fortran-Newsletter-August-2021.md
index 74418c523..e51659dea 100644
--- a/_posts/2021-08-01-Fortran-Newsletter-August-2021.md
+++ b/_posts/2021-08-01-Fortran-Newsletter-August-2021.md
@@ -50,7 +50,7 @@ Ongoing work:
Draft: Internationalization for fortran-lang
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -166,7 +166,7 @@ Work in progress:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-09-01-Fortran-Newsletter-September-2021.md b/_posts/2021-09-01-Fortran-Newsletter-September-2021.md
index 173ee2900..376f65247 100644
--- a/_posts/2021-09-01-Fortran-Newsletter-September-2021.md
+++ b/_posts/2021-09-01-Fortran-Newsletter-September-2021.md
@@ -30,7 +30,7 @@ This month we've had several updates to the website:
Internationalization for fortran-lang
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues) if you have any suggestions for the website and its content.
-We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md) for how to get started.
+We welcome any new contributors to the website and the tutorials page in particular - see the [contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md) for how to get started.
## Fortran Standard Library
@@ -137,7 +137,7 @@ Here's what's new in fpm:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md) to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md) to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
* Browse the [open issues](https://github.com/fortran-lang/fpm/issues) and see if you can help implement any fixes or features.
* Adapt your Fortran package for fpm and submit it to the [Registry](https://github.com/fortran-lang/fpm-registry).
diff --git a/_posts/2021-10-01-Fortran-Newsletter-October-2021.md b/_posts/2021-10-01-Fortran-Newsletter-October-2021.md
index 974b06e7f..509a449cd 100644
--- a/_posts/2021-10-01-Fortran-Newsletter-October-2021.md
+++ b/_posts/2021-10-01-Fortran-Newsletter-October-2021.md
@@ -57,7 +57,7 @@ This month we've had several updates to the website:
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues)
if you have any suggestions for the website and its content.
We welcome any new contributors to the website and the tutorials page in particular - see the
-[contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md)
+[contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md)
for how to get started.
## Fortran Standard Library
@@ -199,8 +199,8 @@ Here's what's new in fpm:
`fpm` is still in early development and we need as much help as we can get.
Here's how you can help today:
-* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/master/PACKAGING.md)
-to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md)
+* Use it and let us know what you think! Read the [fpm packaging guide](https://github.com/fortran-lang/fpm/blob/HEAD/PACKAGING.md)
+to learn how to build your package with fpm, and the [manifest reference](https://github.com/fortran-lang/fpm/blob/HEAD/manifest-reference.md)
to learn what are all the things that you can specify in the fpm.toml file.
* Browse existing *fpm* packages on the [fortran-lang website](https://fortran-lang.org/packages/fpm)
diff --git a/_posts/2021-11-01-Fortran-Newsletter-November-2021.md b/_posts/2021-11-01-Fortran-Newsletter-November-2021.md
index 9bf4559fd..da2461ed1 100644
--- a/_posts/2021-11-01-Fortran-Newsletter-November-2021.md
+++ b/_posts/2021-11-01-Fortran-Newsletter-November-2021.md
@@ -34,7 +34,7 @@ This month we've had several updates to the website:
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues)
if you have any suggestions for the website and its content.
We welcome any new contributors to the website and the tutorials page in particular - see the
-[contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md)
+[contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md)
for how to get started.
diff --git a/_posts/2021-12-01-Fortran-Newsletter-December-2021.md b/_posts/2021-12-01-Fortran-Newsletter-December-2021.md
index dad28f4f9..8bf8de199 100644
--- a/_posts/2021-12-01-Fortran-Newsletter-December-2021.md
+++ b/_posts/2021-12-01-Fortran-Newsletter-December-2021.md
@@ -28,7 +28,7 @@ Here's what's new and ongoing in the fortran-lang.org repo:
[Let us know](https://github.com/fortran-lang/fortran-lang.org/issues)
if you have any suggestions for the website and its content.
We welcome any new contributors to the website and the tutorials page in particular - see the
-[contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/master/CONTRIBUTING.md)
+[contributor guide](https://github.com/fortran-lang/fortran-lang.org/blob/HEAD/CONTRIBUTING.md)
for how to get started.
## Fortran Standard Library
diff --git a/community/github_stats_data/data-fortran-lang-fortran-lang.org.json b/community/github_stats_data/data-fortran-lang-fortran-lang.org.json
index c64e658dc..14397a5c6 100644
--- a/community/github_stats_data/data-fortran-lang-fortran-lang.org.json
+++ b/community/github_stats_data/data-fortran-lang-fortran-lang.org.json
@@ -9983,4 +9983,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/community/github_stats_data/data-fortran-lang-fpm.json b/community/github_stats_data/data-fortran-lang-fpm.json
index 88bcc82e7..058999b61 100644
--- a/community/github_stats_data/data-fortran-lang-fpm.json
+++ b/community/github_stats_data/data-fortran-lang-fpm.json
@@ -17384,4 +17384,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/community/github_stats_data/data-fortran-lang-stdlib.json b/community/github_stats_data/data-fortran-lang-stdlib.json
index b7a31cc31..79de6ad37 100644
--- a/community/github_stats_data/data-fortran-lang-stdlib.json
+++ b/community/github_stats_data/data-fortran-lang-stdlib.json
@@ -28768,4 +28768,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/community/github_stats_data/data-j3-fortran-fortran_proposals.json b/community/github_stats_data/data-j3-fortran-fortran_proposals.json
index 01f2f2686..f0e027b3f 100644
--- a/community/github_stats_data/data-j3-fortran-fortran_proposals.json
+++ b/community/github_stats_data/data-j3-fortran-fortran_proposals.json
@@ -14299,4 +14299,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/community/index.html b/community/index.html
index 7bbed893c..07ee1692d 100644
--- a/community/index.html
+++ b/community/index.html
@@ -38,7 +38,7 @@
See the full
- Code of Conduct
+ Code of Conduct
diff --git a/packages/index.html b/packages/index.html
index 9d7665b54..2c9a1c723 100644
--- a/packages/index.html
+++ b/packages/index.html
@@ -34,7 +34,7 @@
See
-
+
here for how to get your project listed.
@@ -93,7 +93,7 @@
See
-
+
here for how to get your project listed.
diff --git a/packages/search.html b/packages/search.html
index 8724ecf58..d8c4d11ea 100644
--- a/packages/search.html
+++ b/packages/search.html
@@ -31,7 +31,7 @@ Packages / {{page.title}}
See
-
+
here for how to get your project listed.