Skip to content

Commit 4d71508

Browse files
committed
Auto-generated commit
1 parent 95c3848 commit 4d71508

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

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

7-
## Unreleased (2026-01-03)
7+
## Unreleased (2026-01-04)
88

99
<section class="features">
1010

@@ -689,6 +689,7 @@ A total of 38 issues were closed in this release:
689689

690690
<details>
691691

692+
- [`46c47ec`](https://github.com/stdlib-js/stdlib/commit/46c47ec0c92f9a3608290ef8a6ca5cf0e9258866) - **refactor:** update paths _(by Neeraj Pathak)_
692693
- [`7b5a1b5`](https://github.com/stdlib-js/stdlib/commit/7b5a1b57e9d707ea3944a616d775620a8f188bd8) - **test:** add test case for sx _(by Philipp Burckhardt)_
693694
- [`df82f00`](https://github.com/stdlib-js/stdlib/commit/df82f006202c8ade82178b4f7839063706723894) - **docs:** fix require path _(by Philipp Burckhardt)_
694695
- [`016b07f`](https://github.com/stdlib-js/stdlib/commit/016b07f8610e21332af7bfbc38afbacdbeac8583) - **refactor:** rename/reorder parameters _(by Athan Reines)_
@@ -1989,7 +1990,7 @@ A total of 38 issues were closed in this release:
19891990

19901991
### Contributors
19911992

1992-
A total of 30 people contributed to this release. Thank you to the following contributors:
1993+
A total of 31 people contributed to this release. Thank you to the following contributors:
19931994

19941995
- Athan Reines
19951996
- Bhavishy Agrawal
@@ -2009,6 +2010,7 @@ A total of 30 people contributed to this release. Thank you to the following con
20092010
- Muhammad Haris
20102011
- Muhammad Taaha Tariq
20112012
- Navyansh Kesarwani
2013+
- Neeraj Pathak
20122014
- Payal Goswami
20132015
- Philipp Burckhardt
20142016
- Piyush Goel

base/char2dtype/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var objectInverse = require( '@stdlib/utils/object-inverse' );
23+
var objectInverse = require( '@stdlib/object/inverse' );
2424
var dtypeChar = require( './../../../base/dtype-char' );
2525

2626

base/char2dtype/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var objectInverse = require( '@stdlib/utils/object-inverse' );
24+
var objectInverse = require( '@stdlib/object/inverse' );
2525
var dtypeChar = require( './../../../base/dtype-char' );
2626
var char2dtype = require( './../lib' );
2727

base/dtype-enum2str/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
24-
var objectInverse = require( '@stdlib/utils/object-inverse' );
24+
var objectInverse = require( '@stdlib/object/inverse' );
2525
var dtypeEnums = require( './../../../base/dtype-enums' );
2626

2727

base/output-policy-enum2str/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
24-
var objectInverse = require( '@stdlib/utils/object-inverse' );
24+
var objectInverse = require( '@stdlib/object/inverse' );
2525
var enumeration = require( './../../../output-dtype-policies' ).enum;
2626

2727

0 commit comments

Comments
 (0)