Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Modifications by (in alphabetical order):
* P. Vitt, University of Siegen, Germany
* A. Voysey, UK Met Office

## Release 0.2.3 (11/06/2026) ##

09/06/2026 PR #498 for #390 by adding support for linemarkers in parsed
code (e.g. '# 123 "test.f90"').

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# News #
* 01/04/2025 Version 0.2.2 released (adds support for more types of directive and
* 10/06/2026 Version 0.2.3 released (adds support for preprocessor line markers,
Comment thread
sergisiso marked this conversation as resolved.
improved handling of labelled DO loops and support for F2008 extension to
Proc_Decl).
* 01/04/2026 Version 0.2.2 released (adds support for more types of directive and
Comment thread
sergisiso marked this conversation as resolved.
support for the Fortran2008 unlimited-repeat format specifier).
* Good to know: fparser with Python 3.14 is approximately a factor of two faster than
it is with older Python versions.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ authors = [{name = "Pearu Peterson"},
{name = "Rupert Ford"},
{name = "Andrew Porter", email = "andrew.porter@stfc.ac.uk"},
{name = "Sergi Siso", email = "sergi.siso@stfc.ac.uk"}]
license = {text = "BSD-3-Clause"}
license = "BSD-3-Clause"
description = "Python implementation of a Fortran parser"
readme = "README.md"
classifiers = [
Expand Down
Loading