Skip to content

Commit 6cfecd4

Browse files
committed
release 0.13.0
1 parent 5711b20 commit 6cfecd4

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### 0.13.0 (Mar 14, 2023)
2+
* better handling for line directives in free form lexer (#248, @mrd)
3+
* don't inline solo includes in relevant F77 parsers (#245, @RaoulHC)
4+
* add `-C=opts` CLI option for passing CPP arguments (#250, @mrd)
5+
* fix reformatting of 73 character long lines in naive mixed form reformatter
6+
(#251, @ksromanov)
7+
* assume extended `Fortran77Legacy` rather than `Fortran77` for `*.f`, `*.for`
8+
etc. files (#260)
9+
* allow comment lines between continuation lines in F77 parser (in standard)
10+
(#257, @RaoulHC)
11+
* refactor Fortran type & value representation & expression evaluator without
12+
Fortran kind-indexed GADTs; replace constant folder (#253, @raehik)
13+
114
### 0.12.0 (Oct 19, 2022)
215
* clean up F77 include inlining (#245, @RaoulHC)
316
* directly export F77 include parser at `f77lIncludesNoTransform`

fortran-src.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 1.12
55
-- see: https://github.com/sol/hpack
66

77
name: fortran-src
8-
version: 0.12.0
8+
version: 0.13.0
99
synopsis: Parsers and analyses for Fortran standards 66, 77, 90, 95 and 2003 (partial).
1010
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.
1111
category: Language

package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fortran-src
2-
version: '0.12.0'
2+
version: '0.13.0'
33
synopsis: Parsers and analyses for Fortran standards 66, 77, 90, 95 and 2003 (partial).
44
description: >-
55
Provides lexing, parsing, and basic analyses of Fortran code covering

0 commit comments

Comments
 (0)