Skip to content

Commit f11db1e

Browse files
committed
Auto-generated commit
1 parent 9a0a011 commit f11db1e

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ indent_style = tab
121121
[*.{md,md.txt}]
122122
indent_style = space
123123
indent_size = 4
124-
trim_trailing_whitespace = false
124+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
125125
126126
# Set properties for `usage.txt` files:
127127
[usage.txt]

.github/workflows/test_install.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
env:
5151
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
5252

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

5656
# Define the sequence of job steps...
5757
steps:

.github/workflows/test_published_package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
env:
4848
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
4949

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

5353
# Define the job's steps:
5454
steps:

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-17)
7+
## Unreleased (2024-12-24)
88

99
<section class="features">
1010

@@ -47,6 +47,7 @@ A total of 12 issues were closed in this release:
4747

4848
<details>
4949

50+
- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_
5051
- [`32deb11`](https://github.com/stdlib-js/stdlib/commit/32deb11c6a2453748d8db9554b6bb3fdb73a077f) - **docs:** update related packages sections [(#3976)](https://github.com/stdlib-js/stdlib/pull/3976) _(by stdlib-bot)_
5152
- [`3c1789f`](https://github.com/stdlib-js/stdlib/commit/3c1789fdfe3ae56635ddf84fb5dfe229237794fa) - **docs:** add missing private annotations and decimals _(by Philipp Burckhardt)_
5253
- [`1d10ce5`](https://github.com/stdlib-js/stdlib/commit/1d10ce5163bb06f0b93f6dc0ef9697a8336054c2) - **feat:** add `includes` method to `array/fixed-endian-factory` [(#3283)](https://github.com/stdlib-js/stdlib/pull/3283) _(by Ahmed Kashkoush, Athan Reines, Muhammad Haris)_

CONTRIBUTORS

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Dan Rose <danoftheroses@gmail.com>
2626
Daniel Killenberger <daniel.killenberger@gmail.com>
2727
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
2828
Debashis Maharana <debashismaharana7854@gmail.com>
29+
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
2930
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
3031
Dominic Lim <46486515+domlimm@users.noreply.github.com>
3132
Dominik Moritz <domoritz@gmail.com>
@@ -75,6 +76,7 @@ Philipp Burckhardt <pburckhardt@outlook.com>
7576
Prajwal Kulkarni <prajwalkulkarni76@gmail.com>
7677
Pranav Goswami <goswami.4@iitj.ac.in>
7778
Pranjal Jha <97080887+PraneGIT@users.noreply.github.com>
79+
Prashant Kumar Yadav <144602492+0PrashantYadav0@users.noreply.github.com>
7880
Pratik Singh <97464067+Pratik772846@users.noreply.github.com>
7981
Pratyush Kumar Chouhan <pratyushkumar0308@gmail.com>
8082
Priyansh Prajapati <88396544+itsspriyansh@users.noreply.github.com>

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
610610
}
611611
buf = this._buffer;
612612
out = [];
613-
for ( i = 0; i < this._length; i++) {
613+
for ( i = 0; i < this._length; i++ ) {
614614
v = buf[ GETTER ]( i*BYTES_PER_ELEMENT, this._isLE );
615615
if ( predicate.call( thisArg, v, i, this ) ) {
616616
out.push( v );

0 commit comments

Comments
 (0)