Skip to content

Commit f56ebf1

Browse files
committed
Bump version to 1.11.0.
1 parent 94e0b1c commit f56ebf1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ https://github.com/thrust/thrust/blob/main/CODE_OF_CONDUCT.md
2525

2626
## New Features
2727

28-
- Contributor documentation: https://github.com/thrust/thrust/blob/main/CONTRIBUTING.md
2928
- thrust/thrust#1159: CMake multi-config support, which allows multiple
3029
combinations of host and device systems to be built and tested at once.
3130
More details can be found here: https://github.com/thrust/thrust/blob/main/CONTRIBUTING.md#multi-config-cmake-options
@@ -55,6 +54,9 @@ https://github.com/thrust/thrust/blob/main/CODE_OF_CONDUCT.md
5554

5655
## Other Enhancements
5756

57+
- Contributor documentation: https://github.com/thrust/thrust/blob/main/CONTRIBUTING.md
58+
- Code of Conduct: https://github.com/thrust/thrust/blob/main/CODE_OF_CONDUCT.md.
59+
Thanks to Conor Hoekstra for this contribution.
5860
- Support for all combinations of host and device systems.
5961
- C++17 support.
6062
- thrust/thrust#1221: Allocator and vector classes have been replaced with

thrust/system/cuda/detail/sort.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,7 @@ namespace __smart_sort {
16011601

16021602
cuda_cub::throw_on_error(
16031603
cuda_cub::synchronize(policy),
1604-
"merge_sort: failed to synchronize");
1604+
"smart_sort: failed to synchronize");
16051605
}
16061606
} // namespace __smart_sort
16071607

thrust/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* <tt>THRUST_VERSION / 100 % 1000</tt> is the minor version.
4848
* <tt>THRUST_VERSION / 100000</tt> is the major version.
4949
*/
50-
#define THRUST_VERSION 101000
50+
#define THRUST_VERSION 101100
5151

5252
/*! \def THRUST_MAJOR_VERSION
5353
* \brief The preprocessor macro \p THRUST_MAJOR_VERSION encodes the

0 commit comments

Comments
 (0)