Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fbriol committed Apr 17, 2020
1 parent aaed6b1 commit 3ea9c18
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
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.3.0" %}
{% set version = "0.3.1" %}

package:
name: {{ name|lower }}
Expand Down
4 changes: 4 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
#########

0.3.1 (17 April 2020)
-------------------------
* Fixed a bug in Loess filter.

0.3.0 (15 April 2020)
-------------------------
* Selection of interpolation methods for the third and fourth axes.
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.3.0'
version = '0.3.1'
# The full version, including alpha/beta/rc tags
release = '0.3.0'
release = '0.3.1'

# -- 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 @@ -10,9 +10,9 @@

def release() -> str:
"""Returns the software version number"""
return "0.3.0"
return "0.3.1"


def date() -> str:
"""Returns the creation date of this release"""
return "15 April 2020"
return "17 April 2020"

0 comments on commit 3ea9c18

Please sign in to comment.