Skip to content

Commit dacbf72

Browse files
committed
Auto-generated commit
1 parent 2e7d541 commit dacbf72

5 files changed

Lines changed: 43 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-02-25)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`157ea4e`](https://github.com/stdlib-js/stdlib/commit/157ea4e1fe500feee3e8252c9e03162da1b53db7) - **chore:** use relative paths _(by Philipp Burckhardt)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Philipp Burckhardt
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.1.1">
640

741
## 0.1.1 (2026-02-08)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
191191
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-mskbinary5d.svg
192192
[npm-url]: https://npmjs.org/package/@stdlib/array-base-mskbinary5d
193193

194-
[test-image]: https://github.com/stdlib-js/array-base-mskbinary5d/actions/workflows/test.yml/badge.svg?branch=v0.1.1
195-
[test-url]: https://github.com/stdlib-js/array-base-mskbinary5d/actions/workflows/test.yml?query=branch:v0.1.1
194+
[test-image]: https://github.com/stdlib-js/array-base-mskbinary5d/actions/workflows/test.yml/badge.svg?branch=main
195+
[test-url]: https://github.com/stdlib-js/array-base-mskbinary5d/actions/workflows/test.yml?query=branch:main
196196

197197
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-mskbinary5d/main.svg
198198
[coverage-url]: https://codecov.io/github/stdlib-js/array-base-mskbinary5d?branch=main

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( '@stdlib/array-base-filled5d-by' );
2424
var zeros5d = require( '@stdlib/array-base-zeros5d' );
2525
var add = require( '@stdlib/number-float64-base-add' );
26-
var mskbinary5d = require( '@stdlib/array-base-mskbinary5d-lib' );
26+
var mskbinary5d = require( './../lib' );
2727

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

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,16 @@
4040
"@stdlib/types": "^0.4.3"
4141
},
4242
"devDependencies": {
43-
"@stdlib/array-base-filled5d-by": "^0.2.2",
44-
"@stdlib/array-base-mskbinary5d-lib": "github:stdlib-js/array-base-mskbinary5d-lib#main",
45-
"@stdlib/array-base-zeros5d": "^0.2.2",
43+
"@stdlib/array-base-filled5d-by": "^0.2.3",
44+
"@stdlib/array-base-zeros5d": "^0.2.3",
4645
"@stdlib/math-base-assert-is-nan": "^0.2.3",
4746
"@stdlib/math-base-special-floor": "^0.2.4",
4847
"@stdlib/math-base-special-pow": "^0.3.1",
4948
"@stdlib/ndarray-base-numel": "^0.2.3",
5049
"@stdlib/number-float64-base-add": "^0.1.1",
51-
"@stdlib/random-base-bernoulli": "^0.2.1",
52-
"@stdlib/random-base-discrete-uniform": "^0.2.1",
53-
"@stdlib/random-base-uniform": "^0.2.2",
50+
"@stdlib/random-base-bernoulli": "^0.2.2",
51+
"@stdlib/random-base-discrete-uniform": "^0.2.2",
52+
"@stdlib/random-base-uniform": "^0.2.3",
5453
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5554
"istanbul": "^0.4.1",
5655
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

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( '@stdlib/array-base-zeros5d' );
26-
var mskbinary5d = require( '@stdlib/array-base-mskbinary5d-lib' );
26+
var mskbinary5d = require( './../lib' );
2727

2828

2929
// TESTS //

0 commit comments

Comments
 (0)