Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# Version 0.8.1

Full release notes available at [v0.8.1] tag.

[v0.8.1]: https://github.com/fortran-lang/stdlib/releases/tag/v0.8.1

Changes to the existing build system
- Changes in the build system
- Completed refactoring of `stdlib` into modular components using CMake
[#1098](https://github.com/fortran-lang/stdlib/pull/1098)
[#1100](https://github.com/fortran-lang/stdlib/pull/1100)
[#1102](https://github.com/fortran-lang/stdlib/pull/1102)
- Resolve race condition in parallel FYPP preprocessing
[#1103](https://github.com/fortran-lang/stdlib/pull/1103)

Changes to the existing modules
- Change in module `stdlib_lingal_iterative_solvers`
- Remove pure attribute from `stdlib_linop` `inner_product`
[#1106](https://github.com/fortran-lang/stdlib/pull/1106)

Changes to the existing documentation
- Change in README
- Addition of a DOI badge
[#1097](https://github.com/fortran-lang/stdlib/pull/1097)
- Update of the table with flags for modularizing `stdlib`
[#1098](https://github.com/fortran-lang/stdlib/pull/1098)

# Version 0.8.0

Full release notes available at [v0.8.0] tag.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.8.1
2 changes: 1 addition & 1 deletion config/fypp_deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def fpm_build(args,unknown):
# fypp arguments
parser.add_argument("--vmajor", type=int, default=0, help="Project Version Major")
parser.add_argument("--vminor", type=int, default=8, help="Project Version Minor")
parser.add_argument("--vpatch", type=int, default=0, help="Project Version Patch")
parser.add_argument("--vpatch", type=int, default=1, help="Project Version Patch")

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