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 Dec 21, 2024
1 parent e402886 commit ce74a78
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}

# Define the sequence of job steps...
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_published_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}

# Define the job's steps:
steps:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-12-17)
## Unreleased (2024-12-21)

<section class="features">

Expand Down Expand Up @@ -33,6 +33,7 @@

<details>

- [`4b70046`](https://github.com/stdlib-js/stdlib/commit/4b70046a90794cfab03c25c4a796edfd0c7a89a6) - **docs:** update REPL docs _(by Athan Reines)_
- [`54fb9de`](https://github.com/stdlib-js/stdlib/commit/54fb9de7dc776a7d01ca86de154d0f74694d1630) - **docs:** update REPL namespace documentation [(#3978)](https://github.com/stdlib-js/stdlib/pull/3978) _(by stdlib-bot, Philipp Burckhardt)_
- [`e43aaa9`](https://github.com/stdlib-js/stdlib/commit/e43aaa95f790584e26f189ab52267108bb423231) - **docs:** update REPL namespace documentation [(#3917)](https://github.com/stdlib-js/stdlib/pull/3917) _(by stdlib-bot, Philipp Burckhardt)_
- [`2c01b65`](https://github.com/stdlib-js/stdlib/commit/2c01b654e7fcfae9bde232c5fdda10d14f02e30e) - **feat:** add `ndfilterMap` to namespace _(by Athan Reines)_
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Dan Rose <[email protected]>
Daniel Killenberger <[email protected]>
Daniel Yu <[email protected]>
Debashis Maharana <[email protected]>
Desh Deepak Kant <[email protected]>
Divyansh Seth <[email protected]>
Dominic Lim <[email protected]>
Dominik Moritz <[email protected]>
Expand Down Expand Up @@ -75,6 +76,7 @@ Philipp Burckhardt <[email protected]>
Prajwal Kulkarni <[email protected]>
Pranav Goswami <[email protected]>
Pranjal Jha <[email protected]>
Prashant Kumar Yadav <[email protected]>
Pratik Singh <[email protected]>
Pratyush Kumar Chouhan <[email protected]>
Priyansh Prajapati <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1730,8 +1730,8 @@ base.strided.dmap,"\nbase.strided.dmap( N:integer, x:Float64Array, strideX:integ
base.strided.dmap.ndarray,"\nbase.strided.dmap.ndarray( N:integer, x:Float64Array, strideX:integer, \n offsetX:integer, y:Float64Array, strideY:integer, offsetY:integer, \n fcn:Function )\n Applies a unary function to a double-precision floating-point strided input\n array and assigns results to a double-precision floating-point strided\n output array using alternative indexing semantics.\n"
base.strided.dmap2,"\nbase.strided.dmap2( N:integer, x:Float64Array, sx:integer, y:Float64Array, \n sy:integer, z:Float64Array, sz:integer, fcn:Function )\n Applies a binary function to double-precision floating-point strided input\n arrays and assigns results to a double-precision floating-point strided\n output array.\n"
base.strided.dmap2.ndarray,"\nbase.strided.dmap2.ndarray( N:integer, x:Float64Array, sx:integer, ox:integer, \n y:Float64Array, sy:integer, oy:integer, z:Float64Array, sz:integer, \n oz:integer, fcn:Function )\n Applies a unary function to each element retrieved from a strided input\n array according to a callback function and assigns results to a strided\n output array using alternative indexing semantics.\n"
base.strided.dmax,"\nbase.strided.dmax( N:integer, x:Float64Array, stride:integer )\n Computes the maximum value of a double-precision floating-point strided\n array.\n"
base.strided.dmax.ndarray,"\nbase.strided.dmax.ndarray( N:integer, x:Float64Array, stride:integer, \n offset:integer )\n Computes the maximum value of a double-precision floating-point strided\n array using alternative indexing semantics.\n"
base.strided.dmax,"\nbase.strided.dmax( N:integer, x:Float64Array, strideX:integer )\n Computes the maximum value of a double-precision floating-point strided\n array.\n"
base.strided.dmax.ndarray,"\nbase.strided.dmax.ndarray( N:integer, x:Float64Array, strideX:integer, \n offsetX:integer )\n Computes the maximum value of a double-precision floating-point strided\n array using alternative indexing semantics.\n"
base.strided.dmaxabs,"\nbase.strided.dmaxabs( N:integer, x:Float64Array, stride:integer )\n Computes the maximum absolute value of a double-precision floating-point\n strided array.\n"
base.strided.dmaxabs.ndarray,"\nbase.strided.dmaxabs.ndarray( N:integer, x:Float64Array, stride:integer, \n offset:integer )\n Computes the maximum absolute value of a double-precision floating-point\n strided array using alternative indexing semantics.\n"
base.strided.dmaxabssorted,"\nbase.strided.dmaxabssorted( N:integer, x:Float64Array, stride:integer )\n Computes the maximum absolute value of a sorted double-precision floating-\n point strided array.\n"
Expand Down
2 changes: 1 addition & 1 deletion data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.js.map

Large diffs are not rendered by default.

0 comments on commit ce74a78

Please sign in to comment.