Skip to content

Commit

Permalink
Prepare the new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
fbriol committed Sep 16, 2019
1 parent a5c430f commit 9218b39
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 15 deletions.
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pyinterp" %}
{% set version = "0.0.3" %}
{% set version = "0.0.4" %}

package:
name: {{ name|lower }}
Expand Down
22 changes: 14 additions & 8 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
5 changes: 2 additions & 3 deletions src/pyinterp/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9218b39

Please sign in to comment.