Skip to content

Commit

Permalink
#319 update version number and copyright date
Browse files Browse the repository at this point in the history
  • Loading branch information
arporter committed Mar 16, 2022
1 parent c44c53c commit 5b9a846
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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 #

Expand Down
8 changes: 4 additions & 4 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -103,7 +103,7 @@

MAJOR = 0
MINOR = 0
MICRO = 13
MICRO = 14
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

if __name__ == '__main__':
Expand Down

0 comments on commit 5b9a846

Please sign in to comment.