Skip to content

Commit

Permalink
Release 0.24.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Mar 16, 2022
1 parent 2bd8638 commit 004370c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
28 changes: 28 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
------

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion include/xtensor/xtensor_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 004370c

Please sign in to comment.