diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aca0684..644a5d4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ Modifications by (in alphabetical order): * P. Vitt, University of Siegen, Germany * A. Voysey, UK Met Office +## Release 0.0.14 (16/03/2022) ## + 15/03/2022 PR #311 for #310. Allows symbol table scope to be None. 08/12/2021 PR #293 towards #201. Initial symbol-table support added. diff --git a/LICENSE b/LICENSE index 1a63f1f6..54f7737d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,5 @@ -Modified work Copyright (c) 2017 Science and Technology Facilities Council +Modified work Copyright (c) 2017-2022 Science and Technology +Facilities Council. Original work Copyright (c) 1999-2008 Pearu Peterson All rights reserved. diff --git a/README.md b/README.md index 61351490..e9e64422 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # News # + * 10/03/2022 Version 0.0.14 released. See the [CHANGELOG](CHANGELOG.md) + for details. * 02/11/2021 Version 0.0.13 released. See the [CHANGELOG](CHANGELOG.md) for details. * 26/04/2021 Version 0.0.12 released. See the [CHANGELOG](CHANGELOG.md) @@ -23,7 +25,8 @@ This project is based upon the Fortran (77..2003) parser originally developed by Pearu Peterson for the F2PY project, -[www.f2py.com](http://www.f2py.com). +[www.f2py.com](http://www.f2py.com). It provides a parser for Fortran +source code implemented purely in Python. # Obtaining # diff --git a/doc/conf.py b/doc/conf.py index fe0bce40..0f0a8c72 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Modified work Copyright (c) 2017-2021 Science and Technology +# Modified work Copyright (c) 2017-2022 Science and Technology # Facilities Council. # Original work Copyright (c) 1999-2008 Pearu Peterson. @@ -117,16 +117,16 @@ # General information about the project. project = 'fparser' -copyright = '2017-2021, Science and Technology Facilities Council' +copyright = '2017-2022, Science and Technology Facilities Council' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.0.13' +version = '0.0.14' # The full version, including alpha/beta/rc tags. -release = '0.0.13' +release = '0.0.14' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 90e5d48c..ff69b466 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Modified work Copyright (c) 2017-2021 Science and Technology +# Modified work Copyright (c) 2017-2022 Science and Technology # Facilities Council. # Original work Copyright (c) 1999-2008 Pearu Peterson. @@ -103,7 +103,7 @@ MAJOR = 0 MINOR = 0 -MICRO = 13 +MICRO = 14 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) if __name__ == '__main__':