diff --git a/CHANGELOG.md b/CHANGELOG.md index 245b7c70..1a09a1d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-11-27) +## Unreleased (2024-11-28)
@@ -64,6 +64,7 @@ ##### Features +- [`9818fa6`](https://github.com/stdlib-js/stdlib/commit/9818fa6dd8c90e045a147bfd1ba83cb1f693d17b) - update namespace TypeScript declarations [(#3259)](https://github.com/stdlib-js/stdlib/pull/3259) - [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190)
@@ -584,6 +585,7 @@ A total of 8 people contributed to this release. Thank you to the following cont
+- [`9818fa6`](https://github.com/stdlib-js/stdlib/commit/9818fa6dd8c90e045a147bfd1ba83cb1f693d17b) - **feat:** update namespace TypeScript declarations [(#3259)](https://github.com/stdlib-js/stdlib/pull/3259) _(by stdlib-bot, Philipp Burckhardt)_ - [`9db1815`](https://github.com/stdlib-js/stdlib/commit/9db181520dc74f28aab70a73aac64202cf7560ce) - **feat:** add `indexOf` method to `array/fixed-endian-factory` [(#3279)](https://github.com/stdlib-js/stdlib/pull/3279) _(by Aditya Sapra, Athan Reines)_ - [`1d217ba`](https://github.com/stdlib-js/stdlib/commit/1d217bad1d35210a57d65c8be67c596815589082) - **feat:** add `map` method to `array/fixed-endian-factory` [(#3270)](https://github.com/stdlib-js/stdlib/pull/3270) _(by Aayush Khanna, Athan Reines)_ - [`2df0e9b`](https://github.com/stdlib-js/stdlib/commit/2df0e9bb08b8ad1c573b7c2383ef39e492dd5436) - **feat:** add `some` method to `array/fixed-endian-factory` [(#3241)](https://github.com/stdlib-js/stdlib/pull/3241) _(by Kshitij-Dale, Athan Reines)_ diff --git a/base/docs/types/index.d.ts b/base/docs/types/index.d.ts index bef4df8a..2d093fa6 100644 --- a/base/docs/types/index.d.ts +++ b/base/docs/types/index.d.ts @@ -1038,7 +1038,7 @@ interface Namespace { * ns.bquaternary2d( [ x, y, z, w, out ], shapes, add ); * * console.log( out ); - * // => [ [ 4.0, 8.0 ], [ 12.0, 16.0 ] ] + * // => [ [ 4.0, 4.0 ], [ 4.0, 4.0 ] ] */ bquaternary2d: typeof bquaternary2d; @@ -1115,7 +1115,7 @@ interface Namespace { * ns.bternary2d( [ x, y, z, out ], shapes, add ); * * console.log( out ); - * // => [ [ 3.0, 6.0 ], [ 9.0, 12.0 ] ] + * // => [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ] */ bternary2d: typeof bternary2d;