diff --git a/.vscode/settings.json b/.vscode/settings.json index c7e4811c..9c716d8f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -79,6 +79,11 @@ "unordered_set": "cpp", "thread": "cpp", "variant": "cpp", - "future": "cpp" + "future": "cpp", + "clocale": "cpp", + "*.tcc": "cpp", + "fstream": "cpp", + "cinttypes": "cpp", + "condition_variable": "cpp" } } \ No newline at end of file diff --git a/conda/meta.yaml b/conda/meta.yaml index 6b4c35c8..7ce85999 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyinterp" %} -{% set version = "0.0.3" %} +{% set version = "0.0.4" %} package: name: {{ name|lower }} diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index f239625e..9387f2f7 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,18 +1,24 @@ Changelog ######### -0.0.1 (8 July, 2019) ------------------------- -* Initial release - -0.0.2 (12 July, 2019) ------------------------- -* Handle bounds error on structured grid interpolation +0.0.4 (16 September 2019) +------------------------- +* Simplification of the Xarray backend +* Merging of the conda-forge recipe +* Fix documentation issues 0.0.3 (29 July, 2019) ------------------------- +--------------------- * Optimization of memory management * Improving bicubic interpolation performance * Addition of methods to fill undefined values to solve interpolation problems near the coasts. * Major redesign to separate grid management from interpolation routines. + +0.0.2 (12 July, 2019) +--------------------- +* Handle bounds error on structured grid interpolation + +0.0.1 (8 July, 2019) +-------------------- +* Initial release diff --git a/docs/source/conf.py b/docs/source/conf.py index 33f74500..a74c40d8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -17,9 +17,9 @@ author = 'CNES/CLS' # The short X.Y version -version = '0.0.3' +version = '0.0.4' # The full version, including alpha/beta/rc tags -release = '0.0.3' +release = '0.0.4' # -- General configuration --------------------------------------------------- diff --git a/src/pyinterp/version.py b/src/pyinterp/version.py index c26b71e7..d2fa879e 100644 --- a/src/pyinterp/version.py +++ b/src/pyinterp/version.py @@ -6,8 +6,7 @@ def release(full: bool = False) -> str: """Returns the software version number""" - # cd4701c9d31dd51b7d28e0a3dfcdd060bb46607c - result = "0.0.3" + result = "0.0.4" if full: - result += " (29 July 2019)" + result += " (16 September 2019)" return result