Skip to content

Commit

Permalink
Release 0.24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed May 6, 2022
1 parent 9a3f02d commit 214d812
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ library:
| `xtensor` | `xtl` |`xsimd` (optional) |
|-----------|---------|-------------------|
| 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.24.x | ^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
26 changes: 26 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@
Changelog
=========

0.24.2
------

- Fixed the documentation of adapt functions
`#2496 https://github.com/xtensor-stack/xtensor/pull/2496`
- Updated C++20 option for visual studio builds C++2a no longer a valid std option
`#2497 https://github.com/xtensor-stack/xtensor/pull/2497`
- Simplifying argmin and argmax where possible
`#2499 https://github.com/xtensor-stack/xtensor/pull/2499`
- Removed unused code
`#2502 https://github.com/xtensor-stack/xtensor/pull/2502`
- Fixed build error in MSVC 2019 by decaying decltype to base type
`#2506 https://github.com/xtensor-stack/xtensor/pull/2506`
- Added xt::convolve
`#2507 https://github.com/xtensor-stack/xtensor/pull/2507`
- Adding reset_data to xbuffer_adaptor and reset_buffer to adaptor to replace the pointer without any reallocation
`#2521 https://github.com/xtensor-stack/xtensor/pull/2521`
- Workaround for EDG C++ frontend bug
`#2528 https://github.com/xtensor-stack/xtensor/pull/2528`
- Adding cast to deal with xtensor-python's signedness of shape
`#2510 https://github.com/xtensor-stack/xtensor/pull/2510`
- Adding missing rank to xtensor_adaptor
`#2520 https://github.com/xtensor-stack/xtensor/pull/2520`
- Fixing compiler warning
`#2522 https://github.com/xtensor-stack/xtensor/pull/2522`

0.24.1
------

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.1
- xtensor=0.24.2
- 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 1
#define XTENSOR_VERSION_PATCH 2


// Define if the library is going to be using exceptions.
Expand Down

0 comments on commit 214d812

Please sign in to comment.