|
| 1 | +# Version 0.5.0 |
| 2 | + |
| 3 | +Full release notes available at [v0.5.0] tag. |
| 4 | + |
| 5 | +[v0.5.0]: https://github.com/fortran-lang/stdlib/releases/tag/v0.5.0 |
| 6 | + |
| 7 | +- new module `stdlib_linalg_state` |
| 8 | + [#774](https://github.com/fortran-lang/stdlib/pull/774) |
| 9 | + - new derived type: `linalg_state_type` |
| 10 | + - new procedure: `linalg_error_handling` |
| 11 | + |
| 12 | +Changes to existing scripts and modules |
| 13 | +- addition of `implicit none` to all example programs |
| 14 | + [#780](https://github.com/fortran-lang/stdlib/pull/780) |
| 15 | +- change in module `stdlib_hashmaps` |
| 16 | + - fix the procedure `remove_chaining_entry` |
| 17 | + [#788](https://github.com/fortran-lang/stdlib/pull/788) |
| 18 | +- change in module `stdlib_linalg` |
| 19 | + - addition of the BLAS/LAPACK backends and interfaces |
| 20 | + [#772](https://github.com/fortran-lang/stdlib/pull/772) |
| 21 | +- change in module `stdlib_str2num` |
| 22 | + - fix the procedure `to_${k1}$_from_stream` |
| 23 | + [#789](https://github.com/fortran-lang/stdlib/pull/789) |
| 24 | +- upgrade of the Intel-classic compiler in macOS CI |
| 25 | + [#777](https://github.com/fortran-lang/stdlib/pull/777) |
| 26 | + |
| 27 | +Changes to existing documentation |
| 28 | + - Improvement of the documentation |
| 29 | + [#784](https://github.com/fortran-lang/stdlib/pull/784) |
| 30 | + [#781](https://github.com/fortran-lang/stdlib/pull/781) |
| 31 | + [#786](https://github.com/fortran-lang/stdlib/pull/786) |
| 32 | + - Improvement of the support of `fpm` |
| 33 | + [#787](https://github.com/fortran-lang/stdlib/pull/787) |
| 34 | + [#790](https://github.com/fortran-lang/stdlib/pull/790) |
| 35 | + |
| 36 | +# Version 0.4.0 |
| 37 | + |
| 38 | +Full release notes available at [v0.4.0] tag. |
| 39 | + |
| 40 | +[v0.4.0]: https://github.com/fortran-lang/stdlib/releases/tag/v0.4.0 |
| 41 | + |
| 42 | +- new module `stdlib_str2num` |
| 43 | + [#743](https://github.com/fortran-lang/stdlib/pull/743) |
| 44 | + - new procedures: `to_num`, `to_num_from_stream` |
| 45 | + |
| 46 | +Changes to existing scripts and modules |
| 47 | + |
| 48 | +- change in .gitignore |
| 49 | + - addition of the file extensions `.dat` and `.stream` |
| 50 | + [#768](https://github.com/fortran-lang/stdlib/pull/768) |
| 51 | + - addition of `.gitignore` to `stdlib-fpm` |
| 52 | + [#769](https://github.com/fortran-lang/stdlib/pull/769) |
| 53 | +- change in CI/CD |
| 54 | + - support of GCC 13 |
| 55 | + [#737](https://github.com/fortran-lang/stdlib/pull/737) |
| 56 | + - support of Intel compiler `ifx` |
| 57 | + [#752](https://github.com/fortran-lang/stdlib/pull/752) |
| 58 | +- change in script `fpm-deployment.sh` |
| 59 | + - changes to facilitate `fypp` preprocessing for the `fpm` deployment |
| 60 | + [#758](https://github.com/fortran-lang/stdlib/pull/758) |
| 61 | +- change in module `stdlib_ascii` |
| 62 | + - Improved procedures `to_lower` and `to_upper` |
| 63 | + [#733](https://github.com/fortran-lang/stdlib/pull/733) |
| 64 | +- change in module `stdlib_bitsets` |
| 65 | + - initialization in `bitset_type` |
| 66 | + [#753](https://github.com/fortran-lang/stdlib/pull/753) |
| 67 | + - improved procedure `bit_count_large` |
| 68 | + [#756](https://github.com/fortran-lang/stdlib/pull/756) |
| 69 | +- change in module `stdlib_hashmaps` |
| 70 | + - new procedure `get_all_keys` |
| 71 | + [#741](https://github.com/fortran-lang/stdlib/pull/741) |
| 72 | + - new file permissions |
| 73 | + [#762](https://github.com/fortran-lang/stdlib/pull/762) |
| 74 | +- change in module `stdlib_math` |
| 75 | + - new procedure `meshgrid` |
| 76 | + [#764](https://github.com/fortran-lang/stdlib/pull/764) |
| 77 | +- change in module `stdlib_specialfunctions_gamma` |
| 78 | + - fix procedure `gamma` |
| 79 | + [#730](https://github.com/fortran-lang/stdlib/pull/730) |
| 80 | +- change in module `stdlib_string_type` |
| 81 | + - fix procedure `move` |
| 82 | + [#736](https://github.com/fortran-lang/stdlib/pull/736) |
| 83 | + [#773](https://github.com/fortran-lang/stdlib/pull/773) |
| 84 | +- change in `SpookyV2Test.cpp` |
| 85 | + - Fix undefined use of <cstdint> types |
| 86 | + [#747](https://github.com/fortran-lang/stdlib/pull/747) |
| 87 | + |
| 88 | +Changes to the existing documentation |
| 89 | + |
| 90 | +- change in the specs `stdlib_hashmaps` |
| 91 | + - Correction of an intent of the variable "conflict" |
| 92 | + [#739](https://github.com/fortran-lang/stdlib/pull/739) |
| 93 | +- change in README.md |
| 94 | + - instructions to build `stdlib` with `fpm` through the `fpm-deployment.sh` script |
| 95 | + [#757](https://github.com/fortran-lang/stdlib/pull/757) |
| 96 | + |
| 97 | + |
1 | 98 | # Version 0.3.0
|
2 | 99 |
|
3 | 100 | Full release notes available at [v0.3.0] tag.
|
|
0 commit comments