From 0c3cbe153f0fa866cb988eee117cebddffa75b71 Mon Sep 17 00:00:00 2001 From: Dominic Orchard Date: Mon, 30 Sep 2024 11:06:24 -0400 Subject: [PATCH] udpate changelog --- CHANGELOG.md | 4 ++++ app/Main.hs | 2 +- fortran-src.cabal | 2 +- package.yaml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f1b8d4d..bc395d32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 0.16.3 (Sep 30, 2024) + * Store source names for local declarations in .fsmod files. + * Constant evaluator now handles real-integer exponent and real-real exponent expression + ### 0.16.2 (Sep 13, 2024) * Small change to allow a path to be added when building mod-file naming map * Improvements to the power of constant propagation and constant expression evaluation. diff --git a/app/Main.hs b/app/Main.hs index 69af8a6e..78913118 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -51,7 +51,7 @@ programName :: String programName = "fortran-src" showVersion :: String -showVersion = "0.16.2" +showVersion = "0.16.3" main :: IO () main = do diff --git a/fortran-src.cabal b/fortran-src.cabal index 7275d2e1..ce92213e 100644 --- a/fortran-src.cabal +++ b/fortran-src.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: fortran-src -version: 0.16.2 +version: 0.16.3 synopsis: Parsers and analyses for Fortran standards 66, 77, 90, 95 and 2003 (partial). description: Provides lexing, parsing, and basic analyses of Fortran code covering standards: FORTRAN 66, FORTRAN 77, Fortran 90, Fortran 95, Fortran 2003 (partial) and some legacy extensions. Includes data flow and basic block analysis, a renamer, and type analysis. For example usage, see the @@ project, which uses fortran-src as its front end. category: Language diff --git a/package.yaml b/package.yaml index 7e08fc06..1f7f6176 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: fortran-src -version: '0.16.2' +version: '0.16.3' synopsis: Parsers and analyses for Fortran standards 66, 77, 90, 95 and 2003 (partial). description: >- Provides lexing, parsing, and basic analyses of Fortran code covering