Skip to content

Commit

Permalink
Merge pull request #354 from stfc/352_release_0.0.16
Browse files Browse the repository at this point in the history
(Towards #352) update version number, changelog and README
  • Loading branch information
TeranIvy authored Jun 16, 2022
2 parents b37026c + c7a7580 commit ce45b76
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Modifications by (in alphabetical order):
* P. Vitt, University of Siegen, Germany
* A. Voysey, UK Met Office

## Release 0.0.16 (16/06/2022) ##

14/06/2022 PR #337 towards #312 (performance improvements). Removes some
imports and function declaration from the hotpath.

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# News #

* 16/06/2022 Version 0.0.16 released. See the [CHANGELOG](CHANGELOG.md)
for details.
* 30/05/2022 Version 0.0.15 released. See the [CHANGELOG](CHANGELOG.md)
for details.
* 10/03/2022 Version 0.0.14 released. See the [CHANGELOG](CHANGELOG.md)
Expand Down Expand Up @@ -28,7 +30,7 @@
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). It provides a parser for Fortran
source code implemented purely in Python.
source code implemented purely in Python with minimal dependencies.

# Obtaining #

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@
# built documents.
#
# The short X.Y version.
version = '0.0.15'
version = '0.0.16'
# The full version, including alpha/beta/rc tags.
release = '0.0.15'
release = '0.0.16'

# 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
Expand Up @@ -103,8 +103,8 @@

MAJOR = 0
MINOR = 0
MICRO = 15
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
MICRO = 16
VERSION = f'{MAJOR}.{MINOR}.{MICRO}'

if __name__ == '__main__':

Expand Down

0 comments on commit ce45b76

Please sign in to comment.