Skip to content

Commit 23a684e

Browse files
committed
Auto-generated commit
1 parent 91f00de commit 23a684e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

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

7-
## Unreleased (2026-02-24)
7+
## Unreleased (2026-02-25)
88

99
<section class="features">
1010

@@ -260,6 +260,7 @@ A total of 36 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`157ea4e`](https://github.com/stdlib-js/stdlib/commit/157ea4e1fe500feee3e8252c9e03162da1b53db7) - **chore:** use relative paths _(by Philipp Burckhardt)_
263264
- [`e9e7da0`](https://github.com/stdlib-js/stdlib/commit/e9e7da08db53d90feb98a6926e29d388c5de117e) - **bench:** refactor to use string interpolation in `array/base/broadcasted-quaternary4d` [(#10436)](https://github.com/stdlib-js/stdlib/pull/10436) _(by anee3)_
264265
- [`c695d88`](https://github.com/stdlib-js/stdlib/commit/c695d883771b97f493c0d370973fbd2bd39d521e) - **bench:** refactor to use string interpolation in `array/base/broadcasted-quinary2d` [(#10438)](https://github.com/stdlib-js/stdlib/pull/10438) _(by anee3)_
265266
- [`6564170`](https://github.com/stdlib-js/stdlib/commit/6564170f3bf0724a927a23b64f3c624294978182) - **bench:** refactor to use string interpolation in `array/empty` [(#10439)](https://github.com/stdlib-js/stdlib/pull/10439) _(by Aman Singh)_

base/mskbinary5d/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var bernoulli = require( '@stdlib/random/base/bernoulli' ).factory;
2323
var filled5dBy = require( './../../../base/filled5d-by' );
2424
var zeros5d = require( './../../../base/zeros5d' );
2525
var add = require( '@stdlib/number/float64/base/add' );
26-
var mskbinary5d = require( './../../../base/mskbinary5d/lib' );
26+
var mskbinary5d = require( './../lib' );
2727

2828
var shape = [ 1, 2, 1, 3, 3 ];
2929

base/mskbinary5d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var tape = require( 'tape' );
2424
var add = require( '@stdlib/number/float64/base/add' );
2525
var zeros5d = require( './../../../base/zeros5d' );
26-
var mskbinary5d = require( './../../../base/mskbinary5d/lib' );
26+
var mskbinary5d = require( './../lib' );
2727

2828

2929
// TESTS //

0 commit comments

Comments
 (0)