Skip to content

Commit ef1d924

Browse files
committed
Merge branch 'master' into remove_other_type
2 parents f7d35c5 + 1d27d27 commit ef1d924

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+28202
-23849
lines changed

.github/workflows/ci_windows.yml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
include: [
16-
{ msystem: MSYS, arch: x86_64 },
1716
{ msystem: MINGW64, arch: x86_64 },
1817
{ msystem: MINGW32, arch: i686 }
1918
]
@@ -25,7 +24,6 @@ jobs:
2524

2625
- name: Setup MinGW native environment
2726
uses: msys2/setup-msys2@v2
28-
if: contains(matrix.msystem, 'MINGW')
2927
with:
3028
msystem: ${{ matrix.msystem }}
3129
update: false
@@ -34,29 +32,10 @@ jobs:
3432
mingw-w64-${{ matrix.arch }}-gcc
3533
mingw-w64-${{ matrix.arch }}-gcc-fortran
3634
mingw-w64-${{ matrix.arch }}-python
37-
mingw-w64-${{ matrix.arch }}-python-pip
38-
mingw-w64-${{ matrix.arch }}-python-setuptools
35+
mingw-w64-${{ matrix.arch }}-python-fypp
3936
mingw-w64-${{ matrix.arch }}-cmake
4037
mingw-w64-${{ matrix.arch }}-ninja
4138
42-
- name: Setup msys POSIX environment
43-
uses: msys2/setup-msys2@v2
44-
if: contains(matrix.msystem, 'MSYS')
45-
with:
46-
msystem: MSYS
47-
update: false
48-
install: >-
49-
git
50-
mingw-w64-x86_64-gcc
51-
mingw-w64-x86_64-gcc-fortran
52-
python
53-
python-pip
54-
cmake
55-
ninja
56-
57-
- name: Install fypp
58-
run: pip install fypp
59-
6039
- run: >-
6140
PATH=$PATH:/mingw64/bin/ cmake
6241
-Wdev

API-doc-FORD-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ project_website: https://stdlib.fortran-lang.org
4343
favicon: doc/media/favicon.ico
4444
license: by-sa
4545
author: fortran-lang/stdlib contributors
46-
author_pic: https://fortran-lang.org/assets/img/fortran_logo_512x512.png
46+
author_pic: https://fortran-lang.org/en/_static/fortran-logo-256x256.png
4747
email: fortran-lang@groups.io
4848
github: https://github.com/fortran-lang
4949
twitter: https://twitter.com/fortranlang

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
# Version 0.7.0
2+
3+
Full release notes available at [v0.7.0] tag.
4+
5+
[v0.7.0]: https://github.com/fortran-lang/stdlib/releases/tag/v0.7.0
6+
7+
- new module `stdlib_constants`
8+
[#800](https://github.com/fortran-lang/stdlib/pull/800)
9+
- Many mathematical constants and most common physical ([codata](https://codata.org)) constants
10+
11+
Changes to existing scripts and modules
12+
- changes in CI
13+
- Use of `fortran-setup` for GCC, Intel LLVM and Intel Classic
14+
[#834](https://github.com/fortran-lang/stdlib/pull/834)
15+
- change in module `stdlib_hashmaps`
16+
- Support of hash map key generic interfaces
17+
[#827](https://github.com/fortran-lang/stdlib/pull/827)
18+
- changes in module `stdlib_io`
19+
- Addition of a Fortran format specifier in `loadtxt`
20+
[#805](https://github.com/fortran-lang/stdlib/pull/805)
21+
- changes in module `stdlib_linalg`
22+
- Support of extended and quad precision checking
23+
[#821](https://github.com/fortran-lang/stdlib/pull/821)
24+
- Several fixes
25+
[#815](https://github.com/fortran-lang/stdlib/pull/815)
26+
[#818](https://github.com/fortran-lang/stdlib/pull/818)
27+
[#826](https://github.com/fortran-lang/stdlib/pull/826)
28+
[#830](https://github.com/fortran-lang/stdlib/pull/830)
29+
[#836](https://github.com/fortran-lang/stdlib/pull/836)
30+
- New procedures for Eigenvalues and Eigenvectors computation: `eig`, `eigh`, `eigvals`, `eigvalsh`
31+
[#816](https://github.com/fortran-lang/stdlib/pull/816)
32+
- New procedures for Singular Value Decomposition: `svd`, `svdvals`
33+
[#808](https://github.com/fortran-lang/stdlib/pull/808)
34+
- changes in module `stdlib_sorting`
35+
- Renamed variable from `int_size` to `int_index`
36+
[#824](https://github.com/fortran-lang/stdlib/pull/824)
37+
- Support of `int32` `index` array in `sort_index`
38+
[#829](https://github.com/fortran-lang/stdlib/pull/829)
39+
40+
141
# Version 0.6.1
242

343
Full release notes available at [v0.6.1] tag.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.1
1+
0.7.0

0 commit comments

Comments
 (0)