From 004370c79716a2d7b3cf9d04af947363d813a29f Mon Sep 17 00:00:00 2001 From: Johan Mabille Date: Wed, 16 Mar 2022 23:00:34 +0100 Subject: [PATCH] Release 0.24.1 --- README.md | 3 ++- docs/source/changelog.rst | 28 ++++++++++++++++++++++++++++ environment.yml | 2 +- include/xtensor/xtensor_config.hpp | 2 +- 4 files changed, 32 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 17cdd3ea0..fd7bea87c 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,8 @@ library: | `xtensor` | `xtl` |`xsimd` (optional) | |-----------|---------|-------------------| -| master | ^0.7.0 | ^7.4.8 | +| master | ^0.7.0 | ^8.0.3 | +| 0.24.1 | ^0.7.0 | ^8.0.3 | | 0.24.0 | ^0.7.0 | ^8.0.3 | | 0.23.x | ^0.7.0 | ^7.4.8 | | 0.22.0 | ^0.6.23 | ^7.4.8 | diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index a7df939b3..6d5700cad 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -7,6 +7,34 @@ Changelog ========= +0.24.1 +------ + +- Define tbb threshold + `#2455 https://github.com/xtensor-stack/xtensor/pull/2455` +- Export link interface to tbb + `#2456 https://github.com/xtensor-stack/xtensor/pull/2456` +- has_trivial_default_constructor has been removed from libstdc++ since version 7. + `#2459 https://github.com/xtensor-stack/xtensor/pull/2459` +- Added missing headers in CMake + `#2462 https://github.com/xtensor-stack/xtensor/pull/2462` +- Workaround for CMake implementations that do not use C and CXX languages + `#2467 https://github.com/xtensor-stack/xtensor/pull/2467` +- Fix erroneous less_equal usage in is_sorted calls + `#2471 https://github.com/xtensor-stack/xtensor/pull/2471` +- Adding xt::missing to operator() + `#2488 https://github.com/xtensor-stack/xtensor/pull/2488` +- Silence unused variable warning GCC + `#2494 https://github.com/xtensor-stack/xtensor/pull/2494` +- Adding xt::missing functionality to .periodic(...), .at(...), and .in_bounds(...) + `#2493 https://github.com/xtensor-stack/xtensor/pull/2493` +- Fixing internal types + `#2492 https://github.com/xtensor-stack/xtensor/pull/2492` +- Adding size assertion .flat(i) + adding a few tests on size assertions + `#2388 https://github.com/xtensor-stack/xtensor/pull/2388` +- Adding free function xt::strides + `#2489 https://github.com/xtensor-stack/xtensor/pull/2489` + 0.24.0 ------ diff --git a/environment.yml b/environment.yml index 8bc5751c3..2d615797b 100644 --- a/environment.yml +++ b/environment.yml @@ -2,6 +2,6 @@ name: xtensor channels: - conda-forge dependencies: - - xtensor=0.24.0 + - xtensor=0.24.1 - xtensor-blas=0.20.0 - xeus-cling=0.13.0 diff --git a/include/xtensor/xtensor_config.hpp b/include/xtensor/xtensor_config.hpp index f1f2253a9..ffdc5d2fc 100644 --- a/include/xtensor/xtensor_config.hpp +++ b/include/xtensor/xtensor_config.hpp @@ -12,7 +12,7 @@ #define XTENSOR_VERSION_MAJOR 0 #define XTENSOR_VERSION_MINOR 24 -#define XTENSOR_VERSION_PATCH 0 +#define XTENSOR_VERSION_PATCH 1 // Define if the library is going to be using exceptions.