Skip to content

Commit f3c11b2

Browse files
committed
Release 0.23.10
1 parent 62d3f3a commit f3c11b2

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ library:
8484
| `xtensor` | `xtl` |`xsimd` (optional) |
8585
|-----------|---------|-------------------|
8686
| master | ^0.7.0 | ^7.4.8 |
87+
| 0.23.10 | ^0.7.0 | ^7.4.8 |
8788
| 0.23.9 | ^0.7.0 | ^7.4.8 |
8889
| 0.23.8 | ^0.7.0 | ^7.4.8 |
8990
| 0.23.7 | ^0.7.0 | ^7.4.8 |

docs/source/changelog.rst

+22
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@
77
Changelog
88
=========
99

10+
0.23.10
11+
-------
12+
13+
- Performance fix: set m_strides_computed = true after computing
14+
`#2377 https://github.com/xtensor-stack/xtensor/pull/2377`
15+
- argsort: catching zeros stride leading axis (bugfix)
16+
`#2238 https://github.com/xtensor-stack/xtensor/pull/2238`
17+
- Adding ``.flat(i)``
18+
`#2356 https://github.com/xtensor-stack/xtensor/pull/2356`
19+
- Fixed ``check_index`` function
20+
`#2378 https://github.com/xtensor-stack/xtensor/pull/2378`
21+
- Fixing & -> && in histogram
22+
`#2386 https://github.com/xtensor-stack/xtensor/pull/2386`
23+
- Adding ``front()`` and ``back()`` convenience methods
24+
`#2385 https://github.com/xtensor-stack/xtensor/pull/2385`
25+
- Adding description of index operators
26+
`#2387 https://github.com/xtensor-stack/xtensor/pull/2387`
27+
- flip: adding overload without axis (mimics NumPy)
28+
`#2373 https://github.com/xtensor-stack/xtensor/pull/2373`
29+
- average: fixing overload issue for axis argument
30+
`#2374 https://github.com/xtensor-stack/xtensor/pull/2374`
31+
1032
0.23.9
1133
------
1234

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: xtensor
22
channels:
33
- conda-forge
44
dependencies:
5-
- xtensor=0.23.9
5+
- xtensor=0.23.10
66
- xtensor-blas=0.19.1
77
- xeus-cling=0.12.1

include/xtensor/xtensor_config.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#define XTENSOR_VERSION_MAJOR 0
1414
#define XTENSOR_VERSION_MINOR 23
15-
#define XTENSOR_VERSION_PATCH 9
15+
#define XTENSOR_VERSION_PATCH 10
1616

1717

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

0 commit comments

Comments
 (0)