Skip to content

Commit 0fa2e6e

Browse files
committed
update missed "0.8.4" to "0.8.5"
1 parent f0a9426 commit 0fa2e6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ For any Fortran file, the resulting XML file has the following structure:
5757
.. code:: xml
5858
5959
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
60-
<ofp version="0.8.4"> <!-- version of the Open Fortran Parser used -->
60+
<ofp version="0.8.5-1"> <!-- version of the Open Fortran Parser used -->
6161
<file path="/path/to/parsed/file.f90">
6262
<!-- Fortran syntax goes here -->
6363
</file>
@@ -498,7 +498,7 @@ where:
498498
* The :bash:`--output` flag controls where the XML should be written. Defaults to standard output
499499
when omitted.
500500

501-
and remaining command-line options are exactly as defined in OFP 0.8.4.
501+
and remaining command-line options are exactly as defined in OFP 0.8.5.
502502

503503
To parse :bash:`some_fortran_file.f` and save XML output in :bash:`tree.xml` with minimum verbosity:
504504

src/fortran/ofp/XMLPrinterBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public XMLPrinterBase(String[] args, IFortranParser parser, String filename) {
188188
DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
189189
doc = docBuilder.newDocument();
190190
root = contextOpen("ofp");
191-
setAttribute("version", "0.8.4");
191+
setAttribute("version", "0.8.5-1");
192192
doc.appendChild(root);
193193
} catch (Exception error) {
194194
error.printStackTrace();

0 commit comments

Comments
 (0)