Skip to content

Commit 04cfb45

Browse files
committed
Merge tag 'v3.0.2' into stable
v3.0.2 release
2 parents d6ae0e1 + 45fab40 commit 04cfb45

142 files changed

Lines changed: 4676 additions & 1181 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.clang-tidy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ Checks: |
4848
readability-misplaced-array-index,
4949
readability-non-const-parameter,
5050
readability-qualified-auto,
51+
readability-redundant-casting,
5152
readability-redundant-function-ptr-dereference,
53+
readability-redundant-inline-specifier,
54+
readability-redundant-member-init,
5255
readability-redundant-smartptr-get,
5356
readability-redundant-string-cstr,
5457
readability-simplify-subscript-expr,

.codespell-ignore-lines

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ template <op_id id, op_type ot, typename L = undefined_t, typename R = undefined
22
template <typename ThisT>
33
auto &this_ = static_cast<ThisT &>(*this);
44
if (load_impl<ThisT>(temp, false)) {
5+
return load_impl<ThisT>(src, false);
56
ssize_t nd = 0;
67
auto trivial = broadcast(buffers, nd, shape);
78
auto ndim = (size_t) nd;

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ The valid options are:
165165
* Use `cmake --build build -j12` to build with 12 cores (for example).
166166
* Use `-G` and the name of a generator to use something different. `cmake
167167
--help` lists the generators available.
168-
- On Unix, setting `CMAKE_GENERATER=Ninja` in your environment will give
168+
- On Unix, setting `CMAKE_GENERATOR=Ninja` in your environment will give
169169
you automatic multithreading on all your CMake projects!
170170
* Open the `CMakeLists.txt` with QtCreator to generate for that IDE.
171171
* You can use `-DCMAKE_EXPORT_COMPILE_COMMANDS=ON` to generate the `.json` file

.github/dependabot.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ updates:
44
- package-ecosystem: "github-actions"
55
directory: "/"
66
schedule:
7-
interval: "weekly"
7+
interval: "monthly"
88
groups:
99
actions:
1010
patterns:
1111
- "*"
12-
ignore:
13-
- dependency-name: actions/checkout
14-
versions:
15-
- "<5"

0 commit comments

Comments
 (0)