Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 15, 2024
1 parent b5887ee commit 409f272
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 11 deletions.
28 changes: 26 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,34 @@
<section class="release" id="unreleased">

## Unreleased (2024-09-14)
## Unreleased (2024-09-15)

<section class="packages">

### Packages

<section class="package" id="blas-base-cscal-unreleased">

#### [@stdlib/blas/base/cscal](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/cscal)

<details>

<section class="bug-fixes">

##### Bug Fixes

- [`00390b7`](https://github.com/stdlib-js/stdlib/commit/00390b7f27c421251760c78f75697fbf1e3449df) - add missing method in declaration tests [(#2900)](https://github.com/stdlib-js/stdlib/pull/2900)

</section>

<!-- /.bug-fixes -->

</details>

</section>

<!-- /.package -->

<section class="package" id="blas-base-daxpy-unreleased">

#### [@stdlib/blas/base/daxpy](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/daxpy)
Expand Down Expand Up @@ -219,11 +241,12 @@

### Contributors

A total of 5 people contributed to this release. Thank you to the following contributors:
A total of 6 people contributed to this release. Thank you to the following contributors:

- Aman Bhansali
- Athan Reines
- HarshaNP
- Muhammad Haris
- Philipp Burckhardt
- yaswanth

Expand All @@ -237,6 +260,7 @@ A total of 5 people contributed to this release. Thank you to the following cont

<details>

- [`00390b7`](https://github.com/stdlib-js/stdlib/commit/00390b7f27c421251760c78f75697fbf1e3449df) - **fix:** add missing method in declaration tests [(#2900)](https://github.com/stdlib-js/stdlib/pull/2900) _(by Muhammad Haris)_
- [`2d7e925`](https://github.com/stdlib-js/stdlib/commit/2d7e9251e02cba556ad7e8b40ef90d5190d0d719) - **feat:** add support for stacks in `blas/sswap` [(#2898)](https://github.com/stdlib-js/stdlib/pull/2898) _(by Aman Bhansali, Athan Reines)_
- [`2aae52e`](https://github.com/stdlib-js/stdlib/commit/2aae52ed394469a4252a6318fe4d933f09f28ab3) - **refactor:** move `ndarray` API to separate source file _(by Athan Reines)_
- [`97bba2a`](https://github.com/stdlib-js/stdlib/commit/97bba2a07bb5ca413ec1e92100174753edb2e858) - **feat:** add support for stacks in `blas/sdot` [(#2895)](https://github.com/stdlib-js/stdlib/pull/2895) _(by Aman Bhansali, Athan Reines)_
Expand Down
18 changes: 9 additions & 9 deletions base/cscal/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,15 @@ import cscal = require( './index' );
const cx = new Complex64Array( 10 );
const ca = new Complex64( 2.0, 2.0 );

cscal( cx.length, ca, 10, 1, 0 ); // $ExpectError
cscal( cx.length, ca, '10', 1, 0 ); // $ExpectError
cscal( cx.length, ca, true, 1, 0 ); // $ExpectError
cscal( cx.length, ca, false, 1, 0 ); // $ExpectError
cscal( cx.length, ca, null, 1, 0 ); // $ExpectError
cscal( cx.length, ca, undefined, 1, 0 ); // $ExpectError
cscal( cx.length, ca, [ '1' ], 1, 0 ); // $ExpectError
cscal( cx.length, ca, {}, 1, 0 ); // $ExpectError
cscal( cx.length, ca, ( cx: number ): number => cx, 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, 10, 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, '10', 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, true, 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, false, 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, null, 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, undefined, 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, [ '1' ], 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, {}, 1, 0 ); // $ExpectError
cscal.ndarray( cx.length, ca, ( cx: number ): number => cx, 1, 0 ); // $ExpectError
}

// The compiler throws an error if the `ndarray` method is provided a fourth argument which is not a number...
Expand Down

0 comments on commit 409f272

Please sign in to comment.