diff --git a/HISTORY.rst b/HISTORY.rst index c262d2b..94ade1b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,19 @@ Version History =============== +v0.10.0 (2023-11-27) +------------------- + +Breaking Changes +^^^^^^^^^^^^^^^^ +* ``clisops``>=0.12.0 required. + +New Features +^^^^^^^^^^^^ + +* Added regridding operator (#111) + + v0.9.0 (2023-11-17) ------------------- diff --git a/daops/__init__.py b/daops/__init__.py index 88fafcb..69e256e 100644 --- a/daops/__init__.py +++ b/daops/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """Top-level package for daops. daops - Dataset-Aware Operations""" @@ -6,7 +5,7 @@ __contact__ = "eleanor.smith@stfc.ac.uk" __copyright__ = "Copyright 2018 United Kingdom Research and Innovation" __license__ = "BSD" -__version__ = "0.9.0" +__version__ = "0.10.0" from loguru import logger diff --git a/docs/conf.py b/docs/conf.py index 96af6c7..d1fe38e 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # # daops documentation build configuration file, created by # sphinx-quickstart on Fri Jun 9 13:47:02 2017. @@ -74,7 +73,7 @@ # the built documents. # # The short X.Y version. -version = "0.9.0" +version = "0.10.0" # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.cfg b/setup.cfg index 25ed968..632ab25 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0 +current_version = 0.10.0 commit = True tag = True diff --git a/setup.py b/setup.py index 0818b52..ef4cc5b 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,11 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- """The setup script.""" __author__ = """Elle Smith""" __contact__ = "eleanor.smith@stfc.ac.uk" __copyright__ = "Copyright 2018 United Kingdom Research and Innovation" __license__ = "BSD" -__version__ = "0.9.0" +__version__ = "0.10.0" import os from setuptools import setup, find_packages