From e4eee2cf1d85dd6b68b92a541abf4d81be7cc065 Mon Sep 17 00:00:00 2001 From: Andrew Porter Date: Thu, 16 Jun 2022 14:04:24 +0100 Subject: [PATCH 1/2] #352 update version number, changelog and README --- CHANGELOG.md | 2 ++ README.md | 4 +++- doc/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b715b139..f29d84df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 241b6cc3..8f4f7b1c 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 # diff --git a/doc/conf.py b/doc/conf.py index dadac81c..21d0dde0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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. diff --git a/setup.py b/setup.py index 48c5f908..7b15219d 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ MAJOR = 0 MINOR = 0 -MICRO = 15 +MICRO = 16 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) if __name__ == '__main__': From c7a75800c5ce4f3aacef1e0aa81695297bac9b97 Mon Sep 17 00:00:00 2001 From: Andrew Porter Date: Thu, 16 Jun 2022 15:21:52 +0100 Subject: [PATCH 2/2] #354 fix f-string formatting in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7b15219d..02f959f1 100644 --- a/setup.py +++ b/setup.py @@ -104,7 +104,7 @@ MAJOR = 0 MINOR = 0 MICRO = 16 -VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) +VERSION = f'{MAJOR}.{MINOR}.{MICRO}' if __name__ == '__main__':