Skip to content

Commit 3634f2d

Browse files
committed
Release 0.25.0
1 parent af4403e commit 3634f2d

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ library:
9696
| `xtensor` | `xtl` |`xsimd` (optional) |
9797
|-----------|---------|-------------------|
9898
| master | ^0.7.5 | ^10.0.0 |
99+
| 0.25.0 | ^0.7.0 | ^10.0.0 |
99100
| 0.24.7 | ^0.7.0 | ^10.0.0 |
100101
| 0.24.6 | ^0.7.0 | ^10.0.0 |
101102
| 0.24.5 | ^0.7.0 | ^10.0.0 |

docs/source/changelog.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,38 @@
77
Changelog
88
=========
99

10+
0.25.0
11+
------
12+
13+
- Fix conversion warning in xrepeat
14+
`# 2732 https://github.com/xtensor-stack/xtensor/pull/2732`
15+
- Upraded to xsimd 11
16+
`# 2735 https://github.com/xtensor-stack/xtensor/pull/2735`
17+
- Update to use XTENSOR_DEFAULT_ALIGNMENT when using XSIMD
18+
`# 2739 https://github.com/xtensor-stack/xtensor/pull/2739`
19+
- Removed failing test xinfo on clang 16
20+
`# 2740 https://github.com/xtensor-stack/xtensor/pull/2740`
21+
- [CI] Switching to mamba-org/setup-micromamba
22+
`# 2742 https://github.com/xtensor-stack/xtensor/pull/2742`
23+
- Bump cmake version and resolve build issues
24+
`# 2744 https://github.com/xtensor-stack/xtensor/pull/2744`
25+
- Make reshape_view accept -1 as a wildcard dimension
26+
`# 2746 https://github.com/xtensor-stack/xtensor/pull/2746`
27+
- Fixing bug in argmin/argmax called with axis on rank-1 container
28+
`# 2753 https://github.com/xtensor-stack/xtensor/pull/2753`
29+
- pre-commit autoupdate
30+
`# 2754 https://github.com/xtensor-stack/xtensor/pull/2754`
31+
- Use L suffix for long double constants
32+
`# 2762 https://github.com/xtensor-stack/xtensor/pull/2762`
33+
- Use 1/4 step for testing arange
34+
`# 2763 https://github.com/xtensor-stack/xtensor/pull/2763`
35+
- [Optimization] Updated concatenate_access and stack_access to remove allocations
36+
`# 2759 https://github.com/xtensor-stack/xtensor/pull/2759`
37+
- [CI] Added more compilers
38+
`# 2767 https://github.com/xtensor-stack/xtensor/pull/2767`
39+
- Minor xindex_view to_array cleanup
40+
`# 2765 https://github.com/xtensor-stack/xtensor/pull/2765`
41+
1042
0.24.7
1143
------
1244

include/xtensor/xtensor_config.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#define XTENSOR_CONFIG_HPP
1212

1313
#define XTENSOR_VERSION_MAJOR 0
14-
#define XTENSOR_VERSION_MINOR 24
15-
#define XTENSOR_VERSION_PATCH 7
14+
#define XTENSOR_VERSION_MINOR 25
15+
#define XTENSOR_VERSION_PATCH 0
1616

1717

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

0 commit comments

Comments
 (0)