File tree Expand file tree Collapse file tree 4 files changed +29
-4
lines changed
Expand file tree Collapse file tree 4 files changed +29
-4
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,7 @@ library:
8484| ` xtensor ` | ` xtl ` | ` xsimd ` (optional) |
8585| -----------| ---------| -------------------|
8686| master | ^0.7.0 | ^8.0.3 |
87- | 0.24.1 | ^0.7.0 | ^8.0.3 |
88- | 0.24.0 | ^0.7.0 | ^8.0.3 |
87+ | 0.24.x | ^0.7.0 | ^8.0.3 |
8988| 0.23.x | ^0.7.0 | ^7.4.8 |
9089| 0.22.0 | ^0.6.23 | ^7.4.8 |
9190
Original file line number Diff line number Diff line change 77 Changelog
88=========
99
10+ 0.24.2
11+ ------
12+
13+ - Fixed the documentation of adapt functions
14+ `#2496 https://github.com/xtensor-stack/xtensor/pull/2496 `
15+ - Updated C++20 option for visual studio builds C++2a no longer a valid std option
16+ `#2497 https://github.com/xtensor-stack/xtensor/pull/2497 `
17+ - Simplifying argmin and argmax where possible
18+ `#2499 https://github.com/xtensor-stack/xtensor/pull/2499 `
19+ - Removed unused code
20+ `#2502 https://github.com/xtensor-stack/xtensor/pull/2502 `
21+ - Fixed build error in MSVC 2019 by decaying decltype to base type
22+ `#2506 https://github.com/xtensor-stack/xtensor/pull/2506 `
23+ - Added xt::convolve
24+ `#2507 https://github.com/xtensor-stack/xtensor/pull/2507 `
25+ - Adding reset_data to xbuffer_adaptor and reset_buffer to adaptor to replace the pointer without any reallocation
26+ `#2521 https://github.com/xtensor-stack/xtensor/pull/2521 `
27+ - Workaround for EDG C++ frontend bug
28+ `#2528 https://github.com/xtensor-stack/xtensor/pull/2528 `
29+ - Adding cast to deal with xtensor-python's signedness of shape
30+ `#2510 https://github.com/xtensor-stack/xtensor/pull/2510 `
31+ - Adding missing rank to xtensor_adaptor
32+ `#2520 https://github.com/xtensor-stack/xtensor/pull/2520 `
33+ - Fixing compiler warning
34+ `#2522 https://github.com/xtensor-stack/xtensor/pull/2522 `
35+
10360.24.1
1137------
1238
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ name: xtensor
22channels :
33 - conda-forge
44dependencies :
5- - xtensor=0.24.1
5+ - xtensor=0.24.2
66 - xtensor-blas=0.20.0
77 - xeus-cling=0.13.0
Original file line number Diff line number Diff line change 1212
1313#define XTENSOR_VERSION_MAJOR 0
1414#define XTENSOR_VERSION_MINOR 24
15- #define XTENSOR_VERSION_PATCH 1
15+ #define XTENSOR_VERSION_PATCH 2
1616
1717
1818// Define if the library is going to be using exceptions.
You can’t perform that action at this time.
0 commit comments