File tree Expand file tree Collapse file tree 5 files changed +14
-8
lines changed Expand file tree Collapse file tree 5 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ Modifications by (in alphabetical order):
15
15
* P. Vitt, University of Siegen, Germany
16
16
* A. Voysey, UK Met Office
17
17
18
+ ## Release 0.0.14 (16/03/2022) ##
19
+
18
20
15/03/2022 PR #311 for #310 . Allows symbol table scope to be None.
19
21
20
22
08/12/2021 PR #293 towards #201 . Initial symbol-table support added.
Original file line number Diff line number Diff line change 1
- Modified work Copyright (c) 2017 Science and Technology Facilities Council
1
+ Modified work Copyright (c) 2017-2022 Science and Technology
2
+ Facilities Council.
2
3
Original work Copyright (c) 1999-2008 Pearu Peterson
3
4
4
5
All rights reserved.
Original file line number Diff line number Diff line change 1
1
# News #
2
2
3
+ * 10/03/2022 Version 0.0.14 released. See the [ CHANGELOG] ( CHANGELOG.md )
4
+ for details.
3
5
* 02/11/2021 Version 0.0.13 released. See the [ CHANGELOG] ( CHANGELOG.md )
4
6
for details.
5
7
* 26/04/2021 Version 0.0.12 released. See the [ CHANGELOG] ( CHANGELOG.md )
23
25
24
26
This project is based upon the Fortran (77..2003) parser originally
25
27
developed by Pearu Peterson for the F2PY project,
26
- [ www.f2py.com ] ( http://www.f2py.com ) .
28
+ [ www.f2py.com ] ( http://www.f2py.com ) . It provides a parser for Fortran
29
+ source code implemented purely in Python.
27
30
28
31
# Obtaining #
29
32
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
#
3
- # Modified work Copyright (c) 2017-2021 Science and Technology
3
+ # Modified work Copyright (c) 2017-2022 Science and Technology
4
4
# Facilities Council.
5
5
# Original work Copyright (c) 1999-2008 Pearu Peterson.
6
6
117
117
118
118
# General information about the project.
119
119
project = 'fparser'
120
- copyright = '2017-2021 , Science and Technology Facilities Council'
120
+ copyright = '2017-2022 , Science and Technology Facilities Council'
121
121
122
122
# The version info for the project you're documenting, acts as replacement for
123
123
# |version| and |release|, also used in various other places throughout the
124
124
# built documents.
125
125
#
126
126
# The short X.Y version.
127
- version = '0.0.13 '
127
+ version = '0.0.14 '
128
128
# The full version, including alpha/beta/rc tags.
129
- release = '0.0.13 '
129
+ release = '0.0.14 '
130
130
131
131
# The language for content autogenerated by Sphinx. Refer to documentation
132
132
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
3
- # Modified work Copyright (c) 2017-2021 Science and Technology
3
+ # Modified work Copyright (c) 2017-2022 Science and Technology
4
4
# Facilities Council.
5
5
# Original work Copyright (c) 1999-2008 Pearu Peterson.
6
6
103
103
104
104
MAJOR = 0
105
105
MINOR = 0
106
- MICRO = 13
106
+ MICRO = 14
107
107
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
108
108
109
109
if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments