Skip to content

Commit c7ae1a6

Browse files
committed
Release 0.27.0
1 parent 6781c02 commit c7ae1a6

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Julia and R bindings, check out the [xtensor-python](https://github.com/xtensor-
3333
[xtensor-r](https://github.com/xtensor-stack/xtensor-r) projects respectively.
3434

3535
Up to version 0.26.0, `xtensor` requires a C++ compiler supporting C++14.
36-
3736
`xtensor` 0.26.x requires a C++ compiler supporting C++17.
37+
`xtensor` 0.27.x requires a C++ compiler supporting C++20.
3838

3939

4040
## Installation
@@ -97,6 +97,7 @@ library:
9797
| `xtensor` | `xtl` |`xsimd` (optional) |
9898
|-----------|---------|-------------------|
9999
| master | ^0.8.0 | ^13.2.0 |
100+
| 0.27.0 | ^0.8.0 | ^13.2.0 |
100101
| 0.26.0 | ^0.8.0 | ^13.2.0 |
101102
| 0.25.0 | ^0.7.5 | ^11.0.0 |
102103
| 0.24.7 | ^0.7.0 | ^10.0.0 |

docs/source/changelog.rst

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

10+
0.27.0
11+
------
12+
13+
- Replaced apply_cv with xtl::apply_cv and deleted duplicated code
14+
`# 2836 https://github.com/xtensor-stack/xtensor/pull/2836`
15+
- Implement apply with std 17
16+
`# 2835 https://github.com/xtensor-stack/xtensor/pull/2835`
17+
- feat: Use cpp20 by default
18+
`# 2839 https://github.com/xtensor-stack/xtensor/pull/2839`
19+
- Set C++20 in clang-format
20+
`# 2843 https://github.com/xtensor-stack/xtensor/pull/2843`
21+
- Update docs to reflect new directory structure.
22+
`# 2845 https://github.com/xtensor-stack/xtensor/pull/2845`
23+
- Adding concept to a part of the code
24+
`# 2842 https://github.com/xtensor-stack/xtensor/pull/2842`
25+
- fix: update benchmarks
26+
`# 2848 https://github.com/xtensor-stack/xtensor/pull/2848`
27+
- Revive benchmarks
28+
`# 2854 https://github.com/xtensor-stack/xtensor/pull/2854`
29+
- Set cmake min version to represent used features.
30+
`# 2852 https://github.com/xtensor-stack/xtensor/pull/2852`
31+
- Enabling rich display for xeus-cpp-lite
32+
`# 2853 https://github.com/xtensor-stack/xtensor/pull/2853`
33+
- Add braces around initializers
34+
`# 2855 https://github.com/xtensor-stack/xtensor/pull/2855`
35+
- Adding concept to a part of the code (part 2)
36+
`# 2846 https://github.com/xtensor-stack/xtensor/pull/2846`
37+
- cmake: write xtensor.hpp to local dir to keep global build dir clean
38+
`# 2857 https://github.com/xtensor-stack/xtensor/pull/2857`
39+
1040
0.26.0
1141
------
1242

include/xtensor/core/xtensor_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define XTENSOR_CONFIG_HPP
1212

1313
#define XTENSOR_VERSION_MAJOR 0
14-
#define XTENSOR_VERSION_MINOR 26
14+
#define XTENSOR_VERSION_MINOR 27
1515
#define XTENSOR_VERSION_PATCH 0
1616

1717

0 commit comments

Comments
 (0)