Skip to content

Commit 214d812

Browse files
committed
Release 0.24.2
1 parent 9a3f02d commit 214d812

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

docs/source/changelog.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@
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+
1036
0.24.1
1137
------
1238

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: xtensor
22
channels:
33
- conda-forge
44
dependencies:
5-
- xtensor=0.24.1
5+
- xtensor=0.24.2
66
- xtensor-blas=0.20.0
77
- xeus-cling=0.13.0

include/xtensor/xtensor_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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.

0 commit comments

Comments
 (0)