Skip to content

Commit

Permalink
Release 0.21.5
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Apr 14, 2020
1 parent 1cf8ab3 commit 1651d60
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 7 deletions.
6 changes: 1 addition & 5 deletions README.md
Expand Up @@ -94,6 +94,7 @@ library:
| `xtensor` | `xtl` |`xsimd` (optional) |
|-----------|---------|-------------------|
| master | ^0.6.12 | ^7.4.6 |
| 0.21.5 | ^0.6.12 | ^7.4.6 |
| 0.21.4 | ^0.6.12 | ^7.4.6 |
| 0.21.3 | ^0.6.9 | ^7.4.4 |
| 0.21.2 | ^0.6.9 | ^7.4.4 |
Expand All @@ -110,11 +111,6 @@ library:
| 0.20.2 | ^0.6.1 | ^7.0.0 |
| 0.20.1 | ^0.6.1 | ^7.0.0 |
| 0.20.0 | ^0.6.1 | ^7.0.0 |
| 0.19.4 | ^0.5.3 | ^7.0.0 |
| 0.19.3 | ^0.5.3 | ^7.0.0 |
| 0.19.2 | ^0.5.3 | ^7.0.0 |
| 0.19.1 | ^0.5.1 | ^7.0.0 |
| 0.19.0 | ^0.5.1 | ^7.0.0 |

The dependency on `xsimd` is required if you want to enable SIMD acceleration
in `xtensor`. This can be done by defining the macro `XTENSOR_USE_XSIMD`
Expand Down
29 changes: 29 additions & 0 deletions docs/source/changelog.rst
Expand Up @@ -7,6 +7,35 @@
Changelog
=========

0.21.5
------

- Fix segfault when using ``xt::drop`` on an empty list of indices
`#1990 <https://github.com/xtensor-stack/xtensor/pull/1990>`_
- Implemented missing methods in ``xrepeat`` class
`#1993 <https://github.com/xtensor-stack/xtensor/pull/1993>`_
- Added extension base to ``xrepeat`` and clean up ``xbroadcast``
`#1994 <https://github.com/xtensor-stack/xtensor/pull/1994>`_
- Fix return type of ``nanmean`` and add unittest
`#1996 <https://github.com/xtensor-stack/xtensor/pull/1996>`_
- Add result type template argument for ``stddev``, ``variance``, ``nanstd`` and ``nanvar``
`#1999 <https://github.com/xtensor-stack/xtensor/pull/1999>`_
- Fix variance overload
`#2002 <https://github.com/xtensor-stack/xtensor/pull/2002>`_
- Added missing ``xaxis_slice_iterator`` header to CMakeLists.txt
`#2009 <https://github.com/xtensor-stack/xtensor/pull/2009>`_
- Fixed xview on const keep and const drop slices
`#2010 <https://github.com/xtensor-stack/xtensor/pull/2010>`_
- Added ``static_assert`` to ``adapt`` methods
`#2015 <https://github.com/xtensor-stack/xtensor/pull/2015>`_
- Removed allocator deprecated calls
`#2018 <https://github.com/xtensor-stack/xtensor/pull/2018>`_
- Added missing overload of ``push_back`` to ``svector``
`#2024 <https://github.com/xtensor-stack/xtensor/pull/2024>`_
- Initialized all members of ``xfunciton_cache_impl``
`#2026 <https://github.com/xtensor-stack/xtensor/pull/2026>`_


0.21.4
------

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Expand Up @@ -2,7 +2,7 @@ name: xtensor
channels:
- conda-forge
dependencies:
- xtensor=0.21.4
- xtensor=0.21.5
- xtensor-blas=0.17.2
- xeus-cling=0.8.1
- blas * *openblas"
2 changes: 1 addition & 1 deletion include/xtensor/xtensor_config.hpp
Expand Up @@ -12,7 +12,7 @@

#define XTENSOR_VERSION_MAJOR 0
#define XTENSOR_VERSION_MINOR 21
#define XTENSOR_VERSION_PATCH 5-dev
#define XTENSOR_VERSION_PATCH 5

// DETECT 3.6 <= clang < 3.8 for compiler bug workaround.
#ifdef __clang__
Expand Down

0 comments on commit 1651d60

Please sign in to comment.