Skip to content

Commit

Permalink
Version 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fbriol committed Dec 7, 2019
1 parent f788a2b commit 6a52388
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:
- netCDF4
- cartopy
- pandas
- pyinterp>=0.0.7
- pyinterp>=0.0.8
- intake
- intake-xarray
- gcsfs
4 changes: 2 additions & 2 deletions conda/environment.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: RTD
dependencies:
- numpy
- pyinterp>=0.0.7
- pyinterp>=0.0.8
- python=3.7
- xarray
channels:
- conda-forge
- fbriol
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.7" %}
{% set version = "0.0.8" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
#########

0.0.8 (XX December 2019)
0.0.8 (7 December 2019)
-------------------------
* Added interpolation by RBF in RTree
* Improvement of RTree class performance
Expand Down
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.7'
version = '0.0.8'
# The full version, including alpha/beta/rc tags
release = '0.0.7'
release = '0.0.8'

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions src/pyinterp/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

def release() -> str:
"""Returns the software version number"""
return "0.0.7"
return "0.0.8"


def date() -> str:
"""Returns the creation date of this release"""
return "13 November 2019"
return "07 December 2019"

0 comments on commit 6a52388

Please sign in to comment.