Skip to content

Commit

Permalink
Preparation of version 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fbriol committed Sep 19, 2019
1 parent 5678e65 commit 2a733fb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 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.0.4" %}
{% set version = "0.0.5" %}

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.0.5 (19 September 2019)
-------------------------
* Use of the conda-forge channel

0.0.4 (16 September 2019)
-------------------------
* Simplification of the Xarray backend
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.4'
version = '0.0.5'
# The full version, including alpha/beta/rc tags
release = '0.0.4'
release = '0.0.5'

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

def release(full: bool = False) -> str:
"""Returns the software version number"""
result = "0.0.4"
result = "0.0.5"
if full:
result += " (16 September 2019)"
result += " (19 September 2019)"
return result
2 changes: 1 addition & 1 deletion third_party/pybind11
Submodule pybind11 updated 45 files
+0 −2 README.md
+1 −1 docs/advanced/cast/chrono.rst
+0 −1 docs/advanced/classes.rst
+1 −8 docs/changelog.rst
+0 −11 docs/classes.rst
+1 −1 docs/conf.py
+2 −4 include/pybind11/cast.h
+5 −27 include/pybind11/chrono.h
+0 −3 include/pybind11/detail/class.h
+10 −11 include/pybind11/detail/common.h
+31 −49 include/pybind11/detail/internals.h
+5 −12 include/pybind11/functional.h
+0 −2 include/pybind11/iostream.h
+8 −40 include/pybind11/numpy.h
+7 −8 include/pybind11/pybind11.h
+3 −16 include/pybind11/pytypes.h
+23 −42 include/pybind11/stl_bind.h
+0 −8 pybind11/__init__.py
+1 −1 pybind11/_version.py
+0 −20 tests/CMakeLists.txt
+0 −5 tests/conftest.py
+0 −73 tests/cross_module_gil_utils.cpp
+0 −26 tests/test_async.cpp
+0 −23 tests/test_async.py
+1 −1 tests/test_buffers.cpp
+0 −8 tests/test_chrono.cpp
+0 −75 tests/test_chrono.py
+2 −2 tests/test_eigen.py
+0 −1 tests/test_enum.py
+0 −8 tests/test_gil_scoped.cpp
+0 −5 tests/test_gil_scoped.py
+2 −2 tests/test_local_bindings.py
+6 −12 tests/test_methods_and_attributes.cpp
+8 −8 tests/test_methods_and_attributes.py
+0 −81 tests/test_numpy_array.cpp
+0 −26 tests/test_numpy_array.py
+0 −8 tests/test_numpy_dtypes.cpp
+0 −2 tests/test_operator_overloading.cpp
+7 −9 tests/test_operator_overloading.py
+0 −14 tests/test_pytypes.cpp
+3 −13 tests/test_pytypes.py
+1 −2 tests/test_smart_ptr.py
+0 −10 tests/test_stl_binders.py
+1 −1 tools/FindPythonLibsNew.cmake
+1 −1 tools/pybind11Tools.cmake

0 comments on commit 2a733fb

Please sign in to comment.