Skip to content

Commit 2ff5b95

Browse files
committed
Auto-generated commit
1 parent ce5f3de commit 2ff5b95

11 files changed

+78
-30
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-11-21)
7+
## Unreleased (2025-01-11)
88

99
<section class="packages">
1010

@@ -20,6 +20,7 @@
2020

2121
##### Features
2222

23+
- [`d11aaf3`](https://github.com/stdlib-js/stdlib/commit/d11aaf3e4ea651384185655584eea9c5b8ca9ae2) - add `isSortedAscending` to namespace
2324
- [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190)
2425
- [`43aa58f`](https://github.com/stdlib-js/stdlib/commit/43aa58f81dcad604f11a5715a1546c015b0a9623) - add `isByteOrder` to namespace
2526
- [`81b39fe`](https://github.com/stdlib-js/stdlib/commit/81b39fec06b8575149b2ab1b834a7577e6ac5e5d) - add `hasEqualValuesIndexed` to namespace
@@ -113,6 +114,28 @@
113114

114115
<!-- /.package -->
115116

117+
<section class="package" id="array-base-assert-is-sorted-ascending-unreleased">
118+
119+
#### [@stdlib/array/base/assert/is-sorted-ascending](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/assert/is-sorted-ascending)
120+
121+
<details>
122+
123+
<section class="features">
124+
125+
##### Features
126+
127+
- [`5a848eb`](https://github.com/stdlib-js/stdlib/commit/5a848ebda6a2ff9cc34cfa5cf93ffce65b8bab0e) - add `array/base/assert/is-sorted-ascending`
128+
129+
</section>
130+
131+
<!-- /.features -->
132+
133+
</details>
134+
135+
</section>
136+
137+
<!-- /.package -->
138+
116139
</section>
117140

118141
<!-- /.packages -->
@@ -149,6 +172,9 @@ A total of 3 people contributed to this release. Thank you to the following cont
149172

150173
<details>
151174

175+
- [`d11aaf3`](https://github.com/stdlib-js/stdlib/commit/d11aaf3e4ea651384185655584eea9c5b8ca9ae2) - **feat:** add `isSortedAscending` to namespace _(by Athan Reines)_
176+
- [`5a848eb`](https://github.com/stdlib-js/stdlib/commit/5a848ebda6a2ff9cc34cfa5cf93ffce65b8bab0e) - **feat:** add `array/base/assert/is-sorted-ascending` _(by Athan Reines)_
177+
- [`1d9e4dd`](https://github.com/stdlib-js/stdlib/commit/1d9e4dd5514ba4f3c1063dff732e37254dc0dd84) - **docs:** add missing comment _(by Athan Reines)_
152178
- [`b6a2b0b`](https://github.com/stdlib-js/stdlib/commit/b6a2b0b27dc8cc1e9fc02d9679a3ce468cf49b9d) - **docs:** update namespace table of contents [(#3192)](https://github.com/stdlib-js/stdlib/pull/3192) _(by stdlib-bot, Philipp Burckhardt)_
153179
- [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - **feat:** update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190) _(by stdlib-bot, Philipp Burckhardt)_
154180
- [`c00f27a`](https://github.com/stdlib-js/stdlib/commit/c00f27afb4b1853a7f4377fbbab7aec1dab9e34c) - **docs:** improve examples of `array/base/assert` namespace _(by Soumajit Chatterjee, Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aadish Jain <[email protected]>
56
Aayush Khanna <[email protected]>
6-
AbhijitRaut04 <[email protected].com>
7+
Abhijit Raut <abhijitmraut8010@gmail.com>
78
Adarsh Palaskar <[email protected]>
89
Aditya Sapra <[email protected]>
9-
AgPriyanshu18 <[email protected]>
10+
Ahmed Atwa <[email protected]>
11+
Ahmed Kashkoush <[email protected]>
12+
Ahmed Khaled <[email protected]>
1013
Aleksandr <[email protected]>
1114
Ali Salesi <[email protected]>
1215
Aman Bhansali <[email protected]>
@@ -23,6 +26,9 @@ Dan Rose <[email protected]>
2326
Daniel Killenberger <[email protected]>
2427
Daniel Yu <[email protected]>
2528
Debashis Maharana <[email protected]>
29+
Desh Deepak Kant <[email protected]>
30+
Dhruv Arvind Singh <[email protected]>
31+
Divyansh Seth <[email protected]>
2632
Dominic Lim <[email protected]>
2733
Dominik Moritz <[email protected]>
2834
Dorrin Sotoudeh <[email protected]>
@@ -44,51 +50,57 @@ Joey Reed <[email protected]>
4450
Jordan Gallivan <[email protected]>
4551
Joris Labie <[email protected]>
4652
Justin Dennison <[email protected]>
47-
Kaif Mohd <mdkaifprofession@gmail.com>
53+
Karan Anand <[email protected].com>
4854
Karthik Prakash <[email protected]>
49-
5055
Kohantika Nath <[email protected]>
5156
Krishnendu Das <[email protected]>
52-
57+
Kshitij-Dale <[email protected]>
58+
Lovelin Dhoni J B <[email protected]>
5359
Manik Sharma <[email protected]>
60+
Manvith M <[email protected]>
5461
Marcus Fantham <[email protected]>
5562
Matt Cochrane <[email protected]>
5663
Mihir Pandit <[email protected]>
5764
Milan Raj <[email protected]>
58-
Mohammad Kaif <[email protected].com>
65+
Mohammad Kaif <mdkaifprofession@gmail.com>
5966
Momtchil Momtchev <[email protected]>
6067
Muhammad Haris <[email protected]>
6168
Naresh Jagadeesan <[email protected]>
69+
Naveen Kumar <[email protected]>
6270
Neeraj Pathak <[email protected]>
63-
NightKnight <Ahmedatwa866@yahoo.com>
71+
Nishant Shinde <[email protected].com>
6472
Nithin Katta <[email protected]>
6573
Nourhan Hasan <[email protected]>
6674
Ognjen Jevremović <[email protected]>
6775
Oneday12323 <[email protected]>
76+
Ori Miles <[email protected]>
6877
Philipp Burckhardt <[email protected]>
6978
Prajwal Kulkarni <[email protected]>
7079
Pranav Goswami <[email protected]>
71-
72-
80+
Pranjal Jha <[email protected]>
81+
Prashant Kumar Yadav <[email protected]>
82+
Pratik Singh <[email protected]>
7383
Pratyush Kumar Chouhan <[email protected]>
74-
84+
Priyansh Prajapati <[email protected]>
85+
Priyanshu Agarwal <[email protected]>
7586
Pushpendra Chandravanshi <[email protected]>
76-
7787
Raunak Kumar Gupta <[email protected]>
7888
Rejoan Sardar <[email protected]>
7989
Ricky Reusser <[email protected]>
8090
Ridam Garg <[email protected]>
91+
8192
Robert Gislason <[email protected]>
8293
Roman Stetsyk <[email protected]>
83-
94+
Rutam Kathale <[email protected]>
8495
Ruthwik Chikoti <[email protected]>
8596
Ryan Seal <[email protected]>
97+
Rylan Yang <[email protected]>
8698
Sai Srikar Dumpeti <[email protected]>
87-
SarthakPaandey <[email protected]>
99+
Sarthak Paandey <[email protected]>
88100
Saurabh Singh <[email protected]>
89101
Seyyed Parsa Neshaei <[email protected]>
90102
Shashank Shekhar Singh <[email protected]>
91-
103+
Shivam Ahir <[email protected]>
92104
Shraddheya Shendre <[email protected]>
93105
Shubh Mehta <[email protected]>
94106
Shubham Mishra <[email protected]>
@@ -97,7 +109,7 @@ Snehil Shah <[email protected]>
97109
Soumajit Chatterjee <[email protected]>
98110
Spandan Barve <[email protected]>
99111
Stephannie Jiménez Gacha <[email protected]>
100-
Suraj kumar <[email protected]>
112+
Suraj Kumar <[email protected]>
101113
Tirtadwipa Manunggal <[email protected]>
102114
Tudor Pagu <[email protected]>
103115
Tufailahmed Bargir <[email protected]>
@@ -106,12 +118,11 @@ Utkarsh Raj <[email protected]>
106118
UtkershBasnet <[email protected]>
107119
Vaibhav Patel <[email protected]>
108120
Varad Gupta <[email protected]>
121+
Vinit Pandit <[email protected]>
122+
Vivek Maurya <[email protected]>
109123
Xiaochuan Ye <[email protected]>
124+
Yaswanth Kosuru <[email protected]>
110125
Yernar Yergaziyev <[email protected]>
111-
112-
nishant-s7 <[email protected]>
113126
olenkabilonizhka <[email protected]>
114-
orimiles5 <[email protected]>
115127
116128
117-

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ See [LICENSE][stdlib-license].
227227

228228
## Copyright
229229

230-
Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
230+
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
231231

232232
</section>
233233

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)