Skip to content

Commit

Permalink
release 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raehik committed Mar 15, 2023
1 parent 5711b20 commit 6cfecd4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
### 0.13.0 (Mar 14, 2023)
* better handling for line directives in free form lexer (#248, @mrd)
* don't inline solo includes in relevant F77 parsers (#245, @RaoulHC)
* add `-C=opts` CLI option for passing CPP arguments (#250, @mrd)
* fix reformatting of 73 character long lines in naive mixed form reformatter
(#251, @ksromanov)
* assume extended `Fortran77Legacy` rather than `Fortran77` for `*.f`, `*.for`
etc. files (#260)
* allow comment lines between continuation lines in F77 parser (in standard)
(#257, @RaoulHC)
* refactor Fortran type & value representation & expression evaluator without
Fortran kind-indexed GADTs; replace constant folder (#253, @raehik)

### 0.12.0 (Oct 19, 2022)
* clean up F77 include inlining (#245, @RaoulHC)
* directly export F77 include parser at `f77lIncludesNoTransform`
Expand Down
2 changes: 1 addition & 1 deletion fortran-src.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: fortran-src
version: 0.12.0
version: 0.13.0
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 @<https://hackage.haskell.org/package/camfort CamFort>@ project, which uses fortran-src as its front end.
category: Language
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: fortran-src
version: '0.12.0'
version: '0.13.0'
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
Expand Down

0 comments on commit 6cfecd4

Please sign in to comment.