From bd45eafedd2f49e4f7dae6d9c03b116b244434de Mon Sep 17 00:00:00 2001 From: Jeremie Vandenplas Date: Mon, 1 Jul 2024 18:40:09 +0200 Subject: [PATCH 1/2] Update version and changelog.md towards v0.7.0 --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ VERSION | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d7cad513..b3730199b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,43 @@ +# Version 0.7.0 + +Full release notes available at [v0.7.0] tag. + +[v0.7.0]: https://github.com/fortran-lang/stdlib/releases/tag/v0.7.0 + +- new module `stdlib_constants` + [#800](https://github.com/fortran-lang/stdlib/pull/800) + - Many mathematical constants and most common physical (codata) constants + +Changes to existing scripts and modules + - changes in CI + - Use of `fortran-setup` for GCC, Intel LLVM and Intel Classic + [#834](https://github.com/fortran-lang/stdlib/pull/834) + - change in module `stdlib_hashmaps` + - Support of hash map key generic interfaces + [#827](https://github.com/fortran-lang/stdlib/pull/827) + - changes in module `stdlib_io` + - Addition of a Fortran format specifier in `loadtxt` + [#805](https://github.com/fortran-lang/stdlib/pull/805) + - changes in module `stdlib_linalg` + - Support of extended and quad precision checking + [#821](https://github.com/fortran-lang/stdlib/pull/821) + - Several fixes + [#815](https://github.com/fortran-lang/stdlib/pull/815) + [#818](https://github.com/fortran-lang/stdlib/pull/818) + [#826](https://github.com/fortran-lang/stdlib/pull/826) + [#830](https://github.com/fortran-lang/stdlib/pull/830) + [#836](https://github.com/fortran-lang/stdlib/pull/836) + - New procedures for Singular Value Decomposition: `eig`, `eigh`, `eigvals`, `eigvalsh` + [#808](https://github.com/fortran-lang/stdlib/pull/808) + - New procedures for Eigenvalues and Eigenvectors computation: `svd`, `svdvals` + [#816](https://github.com/fortran-lang/stdlib/pull/816) + - changes in module `stdlib_sorting` + - Renamed variable from `int_size` to `int_index` + [#824](https://github.com/fortran-lang/stdlib/pull/824) + - Support of `int32` `index` array in `sort_index` + [#829](https://github.com/fortran-lang/stdlib/pull/829) + + # Version 0.6.1 Full release notes available at [v0.6.1] tag. diff --git a/VERSION b/VERSION index ee6cdce3c..faef31a43 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.1 +0.7.0 From c44a1f6193ba686aec0c81128cce44531abf56c7 Mon Sep 17 00:00:00 2001 From: Jeremie Vandenplas Date: Mon, 1 Jul 2024 13:20:18 -0400 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Federico Perini --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3730199b..3abfb45ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Full release notes available at [v0.7.0] tag. - new module `stdlib_constants` [#800](https://github.com/fortran-lang/stdlib/pull/800) - - Many mathematical constants and most common physical (codata) constants + - Many mathematical constants and most common physical ([codata](https://codata.org)) constants Changes to existing scripts and modules - changes in CI @@ -27,10 +27,10 @@ Changes to existing scripts and modules [#826](https://github.com/fortran-lang/stdlib/pull/826) [#830](https://github.com/fortran-lang/stdlib/pull/830) [#836](https://github.com/fortran-lang/stdlib/pull/836) - - New procedures for Singular Value Decomposition: `eig`, `eigh`, `eigvals`, `eigvalsh` - [#808](https://github.com/fortran-lang/stdlib/pull/808) - - New procedures for Eigenvalues and Eigenvectors computation: `svd`, `svdvals` + - New procedures for Eigenvalues and Eigenvectors computation: `eig`, `eigh`, `eigvals`, `eigvalsh` [#816](https://github.com/fortran-lang/stdlib/pull/816) + - New procedures for Singular Value Decomposition: `svd`, `svdvals` + [#808](https://github.com/fortran-lang/stdlib/pull/808) - changes in module `stdlib_sorting` - Renamed variable from `int_size` to `int_index` [#824](https://github.com/fortran-lang/stdlib/pull/824)