Skip to content

Commit 5b9a846

Browse files
committed
#319 update version number and copyright date
1 parent c44c53c commit 5b9a846

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Modifications by (in alphabetical order):
1515
* P. Vitt, University of Siegen, Germany
1616
* A. Voysey, UK Met Office
1717

18+
## Release 0.0.14 (16/03/2022) ##
19+
1820
15/03/2022 PR #311 for #310. Allows symbol table scope to be None.
1921

2022
08/12/2021 PR #293 towards #201. Initial symbol-table support added.

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Modified work Copyright (c) 2017 Science and Technology Facilities Council
1+
Modified work Copyright (c) 2017-2022 Science and Technology
2+
Facilities Council.
23
Original work Copyright (c) 1999-2008 Pearu Peterson
34

45
All rights reserved.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# News #
22

3+
* 10/03/2022 Version 0.0.14 released. See the [CHANGELOG](CHANGELOG.md)
4+
for details.
35
* 02/11/2021 Version 0.0.13 released. See the [CHANGELOG](CHANGELOG.md)
46
for details.
57
* 26/04/2021 Version 0.0.12 released. See the [CHANGELOG](CHANGELOG.md)
@@ -23,7 +25,8 @@
2325

2426
This project is based upon the Fortran (77..2003) parser originally
2527
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.
2730

2831
# Obtaining #
2932

doc/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Modified work Copyright (c) 2017-2021 Science and Technology
3+
# Modified work Copyright (c) 2017-2022 Science and Technology
44
# Facilities Council.
55
# Original work Copyright (c) 1999-2008 Pearu Peterson.
66

@@ -117,16 +117,16 @@
117117

118118
# General information about the project.
119119
project = 'fparser'
120-
copyright = '2017-2021, Science and Technology Facilities Council'
120+
copyright = '2017-2022, Science and Technology Facilities Council'
121121

122122
# The version info for the project you're documenting, acts as replacement for
123123
# |version| and |release|, also used in various other places throughout the
124124
# built documents.
125125
#
126126
# The short X.Y version.
127-
version = '0.0.13'
127+
version = '0.0.14'
128128
# The full version, including alpha/beta/rc tags.
129-
release = '0.0.13'
129+
release = '0.0.14'
130130

131131
# The language for content autogenerated by Sphinx. Refer to documentation
132132
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
# Modified work Copyright (c) 2017-2021 Science and Technology
3+
# Modified work Copyright (c) 2017-2022 Science and Technology
44
# Facilities Council.
55
# Original work Copyright (c) 1999-2008 Pearu Peterson.
66

@@ -103,7 +103,7 @@
103103

104104
MAJOR = 0
105105
MINOR = 0
106-
MICRO = 13
106+
MICRO = 14
107107
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
108108

109109
if __name__ == '__main__':

0 commit comments

Comments
 (0)