Skip to content

Commit 82442c7

Browse files
authored
Merge pull request #132 from Goddard-Fortran-Ecosystem/develop
Git Flow
2 parents cf0f1e1 + 16d5f0f commit 82442c7

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
22

33
project (FARGPARSE
44

5-
VERSION 1.5.0
5+
VERSION 1.6.0
66
LANGUAGES Fortran)
77

88
# Most users of this software do not (should not?) have permissions to

ChangeLog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## Unreleased
1010

11+
## [1.6.0]
12+
13+
### Fixed
14+
15+
- Add `-check nouninit` for Intel LLVM to work around [`ifx` bug](https://github.com/HPC-Bugs/reproducers/tree/main/compiler/Fortran/ifx/allocatable).
16+
17+
#### Changed
18+
19+
- Updated submodule for gFTL-shared (v1.7.0)
20+
1121
## [1.5.0] - 2023-04-13
1222

1323
### Added
@@ -16,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1626

1727
### Changed
1828

19-
- Updated submodules for gFTL-shared (v1.6.0)
29+
- Updated submodule for gFTL-shared (v1.6.0)
2030

2131
### Fixed
2232

cmake/IntelLLVM.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if(WIN32)
55
set(check_all "-check:all")
66
else()
77
set(no_optimize "-O0")
8-
set(check_all "-check all")
8+
set(check_all "-check all,nouninit")
99
endif()
1010

1111

0 commit comments

Comments
 (0)