Skip to content

Commit fa02777

Browse files
committed
Merge remote-tracking branch 'upstream/master' into fix_ifort2021
2 parents 4793a64 + 0ede301 commit fa02777

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
# Version 0.8.1
2+
3+
Full release notes available at [v0.8.1] tag.
4+
5+
[v0.8.1]: https://github.com/fortran-lang/stdlib/releases/tag/v0.8.1
6+
7+
Changes to the existing build system
8+
- Changes in the build system
9+
- Completed refactoring of `stdlib` into modular components using CMake
10+
[#1098](https://github.com/fortran-lang/stdlib/pull/1098)
11+
[#1100](https://github.com/fortran-lang/stdlib/pull/1100)
12+
[#1102](https://github.com/fortran-lang/stdlib/pull/1102)
13+
- Resolve race condition in parallel FYPP preprocessing
14+
[#1103](https://github.com/fortran-lang/stdlib/pull/1103)
15+
16+
Changes to the existing modules
17+
- Change in module `stdlib_lingal_iterative_solvers`
18+
- Remove pure attribute from `stdlib_linop` `inner_product`
19+
[#1106](https://github.com/fortran-lang/stdlib/pull/1106)
20+
21+
Changes to the existing documentation
22+
- Change in README
23+
- Addition of a DOI badge
24+
[#1097](https://github.com/fortran-lang/stdlib/pull/1097)
25+
- Update of the table with flags for modularizing `stdlib`
26+
[#1098](https://github.com/fortran-lang/stdlib/pull/1098)
27+
128
# Version 0.8.0
229

330
Full release notes available at [v0.8.0] tag.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.0
1+
0.8.1

config/fypp_deployment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def fpm_build(args,unknown):
133133
# fypp arguments
134134
parser.add_argument("--vmajor", type=int, default=0, help="Project Version Major")
135135
parser.add_argument("--vminor", type=int, default=8, help="Project Version Minor")
136-
parser.add_argument("--vpatch", type=int, default=0, help="Project Version Patch")
136+
parser.add_argument("--vpatch", type=int, default=1, help="Project Version Patch")
137137

138138
parser.add_argument("--njob", type=int, default=4, help="Number of parallel jobs for preprocessing")
139139
parser.add_argument("--maxrank",type=int, default=4, help="Set the maximum allowed rank for arrays")

0 commit comments

Comments
 (0)