Skip to content

Commit cabe2a6

Browse files
committed
Auto-generated commit
1 parent 7b84498 commit cabe2a6

4 files changed

Lines changed: 29 additions & 4 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

CHANGELOG.md

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

7-
## Unreleased (2026-02-27)
7+
## Unreleased (2026-04-10)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#10884](https://github.com/stdlib-js/stdlib/issues/10884)
16+
17+
</section>
18+
19+
<!-- /.issues -->
820

921
<section class="commits">
1022

1123
### Commits
1224

1325
<details>
1426

27+
- [`73ba549`](https://github.com/stdlib-js/stdlib/commit/73ba549f03f075fda5c60ce5949d23285b9572a6) - **chore:** replace `new Array()` with array literal [(#10886)](https://github.com/stdlib-js/stdlib/pull/10886) _(by Daniel Mungai Chege, Athan Reines, stdlib-bot)_
1528
- [`3422651`](https://github.com/stdlib-js/stdlib/commit/3422651a3ec2e6717f25d82020a62f00dbe2aa78) - **docs:** add missing section closing comments in READMEs _(by Philipp Burckhardt)_
1629
- [`010db5c`](https://github.com/stdlib-js/stdlib/commit/010db5c09c887bd581006fea011661ecc3ea5d2a) - **test:** fix descriptions _(by Athan Reines)_
1730
- [`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
@@ -31,9 +44,10 @@
3144

3245
### Contributors
3346

34-
A total of 2 people contributed to this release. Thank you to the following contributors:
47+
A total of 3 people contributed to this release. Thank you to the following contributors:
3548

3649
- Athan Reines
50+
- Daniel Mungai Chege
3751
- Philipp Burckhardt
3852

3953
</section>

umask/scripts/binary_to_symbolic.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var j;
3737
TOTAL = 8 * 8 * 8 * 8;
3838

3939
// For each integer value (octal number), determine the symbolic notation equivalent to the value's binary representation...
40-
masks = new Array( TOTAL );
40+
masks = [];
4141
for ( i = 0; i < TOTAL; i++ ) {
4242
tmp = '';
4343

@@ -79,7 +79,7 @@ for ( i = 0; i < TOTAL; i++ ) {
7979
}
8080
}
8181
// [ integer, octal, binary_string, symbolic_notation ]
82-
masks[ i ] = [ i, lpad( i.toString( 8 ), 4, '0' ), bstr, tmp ];
82+
masks.push( [ i, lpad( i.toString( 8 ), 4, '0' ), bstr, tmp ] );
8383
}
8484

8585
if ( PRETTY_PRINT ) {

0 commit comments

Comments
 (0)