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 Jan 21, 2025
1 parent ed53d75 commit 57877de
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 31 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

##### Features

- [`a0220fb`](https://github.com/stdlib-js/stdlib/commit/a0220fba00f930e2558a83c6845a117791ebda26) - update namespace TypeScript declarations [(#4828)](https://github.com/stdlib-js/stdlib/pull/4828)
- [`0eac1eb`](https://github.com/stdlib-js/stdlib/commit/0eac1ebde891ba75b8c4939119a6c4b7c88ceed8) - update namespace TypeScript declarations [(#4809)](https://github.com/stdlib-js/stdlib/pull/4809)
- [`e661213`](https://github.com/stdlib-js/stdlib/commit/e66121352ef767cdb87d19e938b1eccf7970fa3a) - update namespace TypeScript declarations [(#4706)](https://github.com/stdlib-js/stdlib/pull/4706)
- [`25d8240`](https://github.com/stdlib-js/stdlib/commit/25d8240f51b27bd0ee85ca3ef70c89fd3778b902) - update namespace TypeScript declarations [(#4363)](https://github.com/stdlib-js/stdlib/pull/4363)
Expand All @@ -32,6 +33,10 @@

##### BREAKING CHANGES

- [`a0220fb`](https://github.com/stdlib-js/stdlib/commit/a0220fba00f930e2558a83c6845a117791ebda26): remove `dcumax`

- To migrate, users should update their code paths to access `dcumax` via `stats/strided`.

- [`0eac1eb`](https://github.com/stdlib-js/stdlib/commit/0eac1ebde891ba75b8c4939119a6c4b7c88ceed8): remove `dmax`

- To migrate, users should access `dmax` via the `stats/strided` namespace.
Expand Down Expand Up @@ -8361,6 +8366,10 @@ A total of 3 issues were closed in this release:

### BREAKING CHANGES

- [`a0220fb`](https://github.com/stdlib-js/stdlib/commit/a0220fba00f930e2558a83c6845a117791ebda26): remove `dcumax`

- To migrate, users should update their code paths to access `dcumax` via `stats/strided`.

- [`a99f045`](https://github.com/stdlib-js/stdlib/commit/a99f0459d3f658f0944d9a7adf21c0a0b30f3d9f): remove `stats/base/dcumax`

- To migrate, users should update their require/import paths to use
Expand Down Expand Up @@ -8554,6 +8563,7 @@ A total of 25 people contributed to this release. Thank you to the following con

<details>

- [`a0220fb`](https://github.com/stdlib-js/stdlib/commit/a0220fba00f930e2558a83c6845a117791ebda26) - **feat:** update namespace TypeScript declarations [(#4828)](https://github.com/stdlib-js/stdlib/pull/4828) _(by stdlib-bot)_
- [`93636cb`](https://github.com/stdlib-js/stdlib/commit/93636cb4114205b439ff8ba24dbaa90f1f824847) - **docs:** update Markdown stdlib package URLs [(#4827)](https://github.com/stdlib-js/stdlib/pull/4827) _(by stdlib-bot)_
- [`902977d`](https://github.com/stdlib-js/stdlib/commit/902977d7e637a7dfb1704fc4caa8fc3913d3246d) - **docs:** update related packages sections [(#4825)](https://github.com/stdlib-js/stdlib/pull/4825) _(by stdlib-bot)_
- [`cac36dd`](https://github.com/stdlib-js/stdlib/commit/cac36ddc0f1b70fa1375259a09e80e3e25af2d60) - **test:** fix variable name _(by Athan Reines)_
Expand Down
31 changes: 0 additions & 31 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import cumax = require( '@stdlib/stats-base-cumax' );
import cumaxabs = require( '@stdlib/stats-base-cumaxabs' );
import cumin = require( '@stdlib/stats-base-cumin' );
import cuminabs = require( '@stdlib/stats-base-cuminabs' );
import dcumax = require( '@stdlib/stats-strided-dcumax' );
import dcumaxabs = require( '@stdlib/stats-base-dcumaxabs' );
import dcumin = require( '@stdlib/stats-base-dcumin' );
import dcuminabs = require( '@stdlib/stats-base-dcuminabs' );
Expand Down Expand Up @@ -346,36 +345,6 @@ interface Namespace {
*/
cuminabs: typeof cuminabs;

/**
* Computes the cumulative maximum of double-precision floating-point strided array elements.
*
* @param N - number of indexed elements
* @param x - input array
* @param strideX - `x` stride length
* @param y - output array
* @param strideY - `y` stride length
* @returns output array
*
* @example
* var Float64Array = require( '@stdlib/array-float64' );
*
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
* var y = new Float64Array( x.length );
*
* ns.dcumax( x.length, x, 1, y, 1 );
* // y => <Float64Array>[ 1.0, 1.0, 2.0 ]
*
* @example
* var Float64Array = require( '@stdlib/array-float64' );
*
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
* var y = new Float64Array( x.length );
*
* ns.dcumax.ndarray( x.length, x, 1, 0, y, 1, 0 );
* // y => <Float64Array>[ 1.0, 1.0, 2.0 ]
*/
dcumax: typeof dcumax;

/**
* Computes the cumulative maximum absolute value of double-precision floating-point strided array elements.
*
Expand Down

0 comments on commit 57877de

Please sign in to comment.