Skip to content

Commit

Permalink
Merge pull request #132 from Goddard-Fortran-Ecosystem/develop
Browse files Browse the repository at this point in the history
Git Flow
  • Loading branch information
tclune authored Nov 29, 2023
2 parents cf0f1e1 + 16d5f0f commit 82442c7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)

project (FARGPARSE

VERSION 1.5.0
VERSION 1.6.0
LANGUAGES Fortran)

# Most users of this software do not (should not?) have permissions to
Expand Down
12 changes: 11 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.6.0]

### Fixed

- Add `-check nouninit` for Intel LLVM to work around [`ifx` bug](https://github.com/HPC-Bugs/reproducers/tree/main/compiler/Fortran/ifx/allocatable).

#### Changed

- Updated submodule for gFTL-shared (v1.7.0)

## [1.5.0] - 2023-04-13

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

### Changed

- Updated submodules for gFTL-shared (v1.6.0)
- Updated submodule for gFTL-shared (v1.6.0)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion cmake/IntelLLVM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if(WIN32)
set(check_all "-check:all")
else()
set(no_optimize "-O0")
set(check_all "-check all")
set(check_all "-check all,nouninit")
endif()


Expand Down

0 comments on commit 82442c7

Please sign in to comment.