Skip to content

Commit 092611d

Browse files
committed
Auto-generated commit
1 parent a0fbcf3 commit 092611d

File tree

7 files changed

+35
-2
lines changed

7 files changed

+35
-2
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,15 @@ indent_style = tab
165165
indent_style = space
166166
indent_size = 2
167167
168+
# Ignore generated lock files for GitHub Agentic Workflows:
169+
[*.lock.yml]
170+
charset = unset
171+
end_of_line = unset
172+
indent_style = unset
173+
indent_size = unset
174+
trim_trailing_whitespace = unset
175+
insert_final_newline = unset
176+
168177
# Set properties for GYP files:
169178
[binding.gyp]
170179
indent_style = space

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,5 @@ Makefile linguist-vendored
6464

6565
# Configure files which should be included in GitHub language statistics:
6666
docs/types/*.d.ts -linguist-documentation
67+
68+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-03-03)
7+
## Unreleased (2026-03-26)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`f9d1409`](https://github.com/stdlib-js/stdlib/commit/f9d140985e169d34f4e66bd770dc675ea28588a3) - **docs:** add missing JSDoc comment _(by Athan Reines)_
1516
- [`dbaa3a7`](https://github.com/stdlib-js/stdlib/commit/dbaa3a787a2c6c9e1277d069e68d326e7fe45a6d) - **bench:** refactor to use string interpolation in `blas/ext/base/dlinspace` [(#10643)](https://github.com/stdlib-js/stdlib/pull/10643) _(by Prajjwal Bajpai)_
1617
- [`a408eb8`](https://github.com/stdlib-js/stdlib/commit/a408eb86567546c9ff9da1fa330a77814ce0315c) - **bench:** refactor to use dynamic memory allocation in `blas/ext/base/dlinspace` [(#10642)](https://github.com/stdlib-js/stdlib/pull/10642) _(by Prajjwal Bajpai)_
1718

@@ -25,8 +26,9 @@
2526

2627
### Contributors
2728

28-
A total of 1 person contributed to this release. Thank you to this contributor:
29+
A total of 2 people contributed to this release. Thank you to the following contributors:
2930

31+
- Athan Reines
3032
- Prajjwal Bajpai
3133

3234
</section>

benchmark/benchmark.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@ function createBenchmark( len ) {
7878

7979
// MAIN //
8080

81+
/**
82+
* Main execution sequence.
83+
*
84+
* @private
85+
*/
8186
function main() {
8287
var len;
8388
var min;

benchmark/benchmark.native.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ function createBenchmark( len ) {
8383

8484
// MAIN //
8585

86+
/**
87+
* Main execution sequence.
88+
*
89+
* @private
90+
*/
8691
function main() {
8792
var len;
8893
var min;

benchmark/benchmark.ndarray.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@ function createBenchmark( len ) {
7878

7979
// MAIN //
8080

81+
/**
82+
* Main execution sequence.
83+
*
84+
* @private
85+
*/
8186
function main() {
8287
var len;
8388
var min;

benchmark/benchmark.ndarray.native.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ function createBenchmark( len ) {
8383

8484
// MAIN //
8585

86+
/**
87+
* Main execution sequence.
88+
*
89+
* @private
90+
*/
8691
function main() {
8792
var len;
8893
var min;

0 commit comments

Comments
 (0)