From 57c4066feb2b8248c520d6c6b4791b67b02a9520 Mon Sep 17 00:00:00 2001 From: Andrew Porter Date: Wed, 10 Jun 2026 15:07:00 +0100 Subject: [PATCH 1/3] #510 add 0.2.3 release to News section of README. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 75b8ec59..b8918986 100644 --- a/README.md +++ b/README.md @@ -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, + 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 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. From 1e6fe6fe85b1b56bbb486de575ea431399cce6b4 Mon Sep 17 00:00:00 2001 From: Andrew Porter Date: Thu, 11 Jun 2026 11:15:06 +0100 Subject: [PATCH 2/3] #510 fix README typo and license entry in pyproject.toml --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b8918986..fe9310f7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # News # * 10/06/2026 Version 0.2.3 released (adds support for preprocessor line markers, improved handling of labelled DO loops and support for F2008 extension to - Proc_Decl. + Proc_Decl). * 01/04/2026 Version 0.2.2 released (adds support for more types of directive and support for the Fortran2008 unlimited-repeat format specifier). * Good to know: fparser with Python 3.14 is approximately a factor of two faster than diff --git a/pyproject.toml b/pyproject.toml index 504d9f59..bda7c27b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ From 505c35e9d1aa7dc3dba2720d856ab23fa3ff6f12 Mon Sep 17 00:00:00 2001 From: Sergi Siso Date: Thu, 11 Jun 2026 13:31:53 +0100 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9c242bb..abcfea39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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"').