diff --git a/VERSION b/VERSION index f7abe27..70d5b25 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.2 \ No newline at end of file +0.4.3 \ No newline at end of file diff --git a/docs/changelog.rst b/docs/changelog.rst index dab3a86..aeff841 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,11 @@ Changelog ========= +Version 0.4.3 +============= +- [Variogram] :func:`dim ` now returns the spatial dimensionality of the input data. +- [Variogram] fixed a numpy depreaction warning in `_calc_distances` + Version 0.4.2 ============= - [Variogram] :func:`bins ` now cases manual setted bin edges automatically diff --git a/skgstat/__init__.py b/skgstat/__init__.py index 8fd1e77..892ac3f 100644 --- a/skgstat/__init__.py +++ b/skgstat/__init__.py @@ -5,6 +5,6 @@ from . import interfaces # set some stuff -__version__ = '0.4.2' +__version__ = '0.4.3' __author__ = 'Mirko Maelicke ' __backend__ = 'matplotlib'