From 7323379dbee7217a450f9ba539cdbe525523dcbb Mon Sep 17 00:00:00 2001 From: Tom Hilder Date: Mon, 19 Sep 2022 17:34:55 +1000 Subject: [PATCH] bump version 1.1.2 -> 1.2.0 --- README.md | 2 +- docs/conf.py | 2 +- pyproject.toml | 4 ++-- src/wakeflow/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c773645..9967419 100644 --- a/README.md +++ b/README.md @@ -209,7 +209,7 @@ Additional acknowledgements: -[pypi-shield]: https://img.shields.io/badge/pypi-1.1.2-green?style=flat-square +[pypi-shield]: https://img.shields.io/badge/pypi-1.2.0-green?style=flat-square [pypi-url]: https://pypi.org/project/wakeflow/ [python-shield]: https://img.shields.io/badge/python-3.6%2B-orange?style=flat-square [python-url]: https://www.python.org diff --git a/docs/conf.py b/docs/conf.py index fe34ace..31d60fc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = 'Wakeflow' copyright = '2022, Thomas Hilder' author = 'Thomas Hilder' -release = '1.1.2' +release = '1.2.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 4c3cfd3..d8bf9b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "wakeflow" -version = "1.1.2" +version = "1.2.0" description = "Generate and manipulate semi-analytic models of planet wakes" readme = "README.md" authors = [{ name = "Thomas Hilder", email = "tom.hilder.dlhp@gmail.com" }] @@ -42,7 +42,7 @@ testpaths = [ ] [tool.bumpver] -current_version = "1.1.2" +current_version = "1.2.0" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "bump version {old_version} -> {new_version}" commit = true diff --git a/src/wakeflow/__init__.py b/src/wakeflow/__init__.py index dc3d131..4044ebe 100644 --- a/src/wakeflow/__init__.py +++ b/src/wakeflow/__init__.py @@ -6,7 +6,7 @@ """ # wakeflow package versionss -__version__ = "1.1.2" +__version__ = "1.2.0" # give users access to the WakeflowModel class from .wakeflow import WakeflowModel