Skip to content

Commit

Permalink
Commit GFE versions v0.8 releases
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 committed May 9, 2022
1 parent aef6905 commit 7886d33
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 23 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.12)
project (GFE
VERSION 1.1.2
VERSION 0.8.0
LANGUAGES Fortran
)
cmake_policy(SET CMP0074 NEW)
Expand Down
41 changes: 33 additions & 8 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Initial release

| Package | Version |
| :------ | :------ |
| gFTL | v1.7.0 |
| gFTL-shared | v1.4.1 |
| fArgParse | v1.2.0 |
| Package | Version |
| :------ | :------ |
| gFTL | v1.7.0 |
| gFTL-shared | v1.4.1 |
| fArgParse | v1.2.0 |
| yaFyaml | v1.0-beta8 |
| pFlogger | v1.8.0 |
| pFUnit | v4.2.5 |

| pFlogger | v1.8.0 |
| pFUnit | v4.2.5 |

## [0.9.0] - 2022-05-09

- This is a back-release of GFE to match the GFE library versions used in GCHP 14.0

| Package | Version |
| :------ | :------ |
| gFTL | v1.6.0 |
| gFTL-shared | v1.4.1 |
| fArgParse | v1.1.2 |
| yaFyaml | v1.0-beta4.1 |
| pFlogger | v1.6.1 |
| pFUnit | v4.2.2 |

## [0.8.0] - 2022-05-09

- This is a back-release of GFE to match the GFE library versions used in ESMA-Baselibs v6.2.13

| Package | Version |
| :------ | :------ |
| gFTL | v1.5.5 |
| gFTL-shared | v1.3.6 |
| fArgParse | v1.1.2 |
| yaFyaml | v1.0-beta5.1 |
| pFlogger | v1.6.1 |
| pFUnit | v4.2.2 |
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ This repo is intended to be a single fixture for the [Goddard Fortran Ecosystem]

## Current versions

| Package | Version |
| :------ | :------ |
| gFTL | v1.7.0 |
| gFTL-shared | v1.4.1 |
| fArgParse | v1.2.0 |
| yaFyaml | v1.0-beta8 |
| pFlogger | v1.8.0 |
| pFUnit | v4.2.7 |
| Package | Version |
| :------ | :------ |
| gFTL | v1.5.5 |
| gFTL-shared | v1.3.6 |
| fArgParse | v1.1.2 |
| yaFyaml | v1.0-beta5.1 |
| pFlogger | v1.6.1 |
| pFUnit | v4.2.2 |

## Set up

Expand Down
2 changes: 1 addition & 1 deletion fArgParse
2 changes: 1 addition & 1 deletion gFTL-shared
2 changes: 1 addition & 1 deletion yaFyaml
Submodule yaFyaml updated 62 files
+5 −5 .github/workflows/main.yml
+1 −48 ChangeLog.md
+31 −30 Examples/Iterators/iterator.F90
+2 −2 Examples/JSON/integer-array/test-integer-array.f90
+6 −5 Examples/JSON/nested-object-array/test-nested-object-array.f90
+2 −2 Examples/JSON/trivial/test-trivial.f90
+16 −16 Examples/Simple/simple.F90
+14 −14 Examples/Simple/simple2.F90
+4 −4 Examples/Trivial/trivial.F90
+0 −9 cmake/NVHPC.cmake
+0 −9 cmake/PGI.cmake
+7 −5 src/CMakeLists.txt
+713 −0 src/Configuration.F90
+461 −0 src/ConfigurationIterator_implementation.F90
+411 −0 src/Configuration_implementation.F90
+8 −14 src/ErrorCodes.F90
+10 −8 src/IntegerSimpleKeyMap.F90
+36 −45 src/Lexer.F90
+353 −0 src/Nodes/AbstractNode.F90
+11 −156 src/Nodes/BaseNode.F90
+86 −474 src/Nodes/BaseNode_implementation.F90
+11 −47 src/Nodes/BoolNode.F90
+2 −2 src/Nodes/BoolNode_implementation.F90
+34 −39 src/Nodes/FloatNode.F90
+2 −2 src/Nodes/FloatNode_implementation.F90
+27 −39 src/Nodes/IntNode.F90
+2 −2 src/Nodes/IntNode_implementation.F90
+3 −9 src/Nodes/Mapping.F90
+8 −180 src/Nodes/MappingNode.F90
+3 −98 src/Nodes/MappingNode_implementation.F90
+5 −76 src/Nodes/Nodes.F90
+0 −72 src/Nodes/NullIterator.F90
+2 −4 src/Nodes/Sequence.F90
+18 −187 src/Nodes/SequenceNode.F90
+2 −72 src/Nodes/SequenceNode_implementation.F90
+12 −40 src/Nodes/StringNode.F90
+2 −2 src/Nodes/StringNode_implementation.F90
+20 −0 src/Nodes/VectorNode.F90
+0 −598 src/Nodes/YAML_Node.F90
+166 −306 src/Parser.F90
+10 −0 src/ParserState.F90
+2 −2 src/StringNodeMap.F90
+1 −0 src/TextStream.F90
+11 −8 src/TokenVector.F90
+1 −1 src/Tokens.F90
+116 −0 src/UnlimitedUtilities.F90
+13 −0 src/analyze.F90
+3 −3 src/to_json.F90
+16 −10 src/yafyaml.F90
+3 −2 tests/CMakeLists.txt
+2 −2 tests/Test_BoolNode.pf
+12 −27 tests/Test_ComplexNode.pf
+2 −2 tests/Test_FloatNode.pf
+13 −13 tests/Test_IntNode.pf
+0 −121 tests/Test_Iterators.pf
+103 −94 tests/Test_Lexer.pf
+6 −6 tests/Test_MappingNode.pf
+0 −217 tests/Test_Node_Set.pf
+75 −90 tests/Test_Parser.pf
+2 −2 tests/Test_SequenceNode.pf
+2 −2 tests/Test_StringNode.pf
+96 −0 tests/Test_UnlimitedUtilities.pf

0 comments on commit 7886d33

Please sign in to comment.