Skip to content

Commit

Permalink
Release 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed May 16, 2018
1 parent b5711a6 commit 1cf95b8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ http://xtensor.readthedocs.io/

| `xtensor` | `xtl` |`xsimd` (optional) |
|-----------|--------|-------------------|
| master | ^0.4.1 | ^4.1.1 |
| master | ^0.4.9 | ^4.1.3 |
| 0.16.0 | ^0.4.9 | ^4.1.3 |
| 0.15.9 | ^0.4.1 | ^4.1.1 |
| 0.15.8 | ^0.4.1 | ^4.1.1 |
| 0.15.7 | ^0.4.1 | ^4.1.1 |
Expand All @@ -72,8 +73,6 @@ http://xtensor.readthedocs.io/
| 0.15.2 | ^0.4.0 | ^4.0.0 |
| 0.15.1 | ^0.4.0 | ^4.0.0 |
| 0.15.0 | ^0.4.0 | ^4.0.0 |
| 0.14.1 | ^0.3.7 | ^3.1.0 |
| 0.14.0 | ^0.3.6 | ^3.1.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` *before* including any header of `xtensor`.
Expand Down
8 changes: 8 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,16 @@ Other changes
`#825 <https://github.com/QuantStack/xtensor/pull/825>`_.
- gcc-8 fix for template method calls
`#833 <https://github.com/QuantStack/xtensor/pull/833>`_.
- refactor benchmarks for upcoming release
`#842 <https://github.com/QuantStack/xtensor/pull/842>`_.
- ``flip`` now returns a view
`#843 <https://github.com/QuantStack/xtensor/pull/843>`_.
- initial warning pass
`#850 <https://github.com/QuantStack/xtensor/pull/850>`_.
- Fix warning on diff function
`#851 <https://github.com/QuantStack/xtensor/pull/851>`_.
- xsimd assignment fixed
`#852 <https://github.com/QuantStack/xtensor/pull/852>`_.

0.15.9
------
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- QuantStack
- conda-forge
dependencies:
- xtensor=0.15.9
- xtensor-blas=0.10.1
- xtensor=0.16.0
- xtensor-blas=0.11.0
- xeus-cling=0.3.0
- notebook
4 changes: 2 additions & 2 deletions include/xtensor/xtensor_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#define XTENSOR_CONFIG_HPP

#define XTENSOR_VERSION_MAJOR 0
#define XTENSOR_VERSION_MINOR 15
#define XTENSOR_VERSION_PATCH 9
#define XTENSOR_VERSION_MINOR 16
#define XTENSOR_VERSION_PATCH 0

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

0 comments on commit 1cf95b8

Please sign in to comment.