Skip to content

Commit 7064b93

Browse files
committed
Auto-generated commit
1 parent 6f7e7bf commit 7064b93

9 files changed

Lines changed: 41 additions & 2 deletions

File tree

.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

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2026-04-24T03:18:08.019Z

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ package.json.copy
2525
###############
2626
build/
2727
downloads/
28+
plans/
2829
reports/
2930
tmp/
3031

@@ -175,6 +176,10 @@ acs-*.bib
175176
*.ind
176177
*.ist
177178

179+
# Git #
180+
#######
181+
.worktrees
182+
178183
# Visual Studio #
179184
#################
180185
.vscode/

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-16)
7+
## Unreleased (2026-04-24)
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
- [`e031155`](https://github.com/stdlib-js/stdlib/commit/e0311558e49df0b673eab70c11796fc7de62efb4) - **bench:** refactor to use string interpolation in `blas/ext/base/srev` [(#10912)](https://github.com/stdlib-js/stdlib/pull/10912) _(by Partha Das)_
1617
- [`c70d673`](https://github.com/stdlib-js/stdlib/commit/c70d673d45f8bad3ca3305a582d9323e656758d9) - **bench:** refactor to use dynamic memory allocation in `blas/ext/base/srev` [(#10772)](https://github.com/stdlib-js/stdlib/pull/10772) _(by Prajjwal Bajpai)_
1718

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

2627
### Contributors
2728

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

31+
- Athan Reines
3032
- Partha Das
3133
- Prajjwal Bajpai
3234

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)