Skip to content

Commit f703500

Browse files
committed
Auto-generated commit
1 parent b265324 commit f703500

File tree

14 files changed

+29
-15
lines changed

14 files changed

+29
-15
lines changed

.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: 3 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-12-21)
7+
## Unreleased (2024-12-24)
88

99
<section class="packages">
1010

@@ -102,6 +102,8 @@ A total of 3 people contributed to this release. Thank you to the following cont
102102

103103
<details>
104104

105+
- [`7d6450c`](https://github.com/stdlib-js/stdlib/commit/7d6450c671dd91fffbec536a216a76f9e094dad0) - **docs:** update related packages sections [(#4186)](https://github.com/stdlib-js/stdlib/pull/4186) _(by stdlib-bot)_
106+
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_
105107
- [`8684eb4`](https://github.com/stdlib-js/stdlib/commit/8684eb429498a239bff9bdd72f443dd1cd981552) - **docs:** update related packages sections [(#4114)](https://github.com/stdlib-js/stdlib/pull/4114) _(by stdlib-bot, Athan Reines)_
106108
- [`5cb36ef`](https://github.com/stdlib-js/stdlib/commit/5cb36ef4c6f8158585ac88867a8dec21ed3fa372) - **docs:** update related packages sections [(#3890)](https://github.com/stdlib-js/stdlib/pull/3890) _(by stdlib-bot)_
107109
- [`1c56b73`](https://github.com/stdlib-js/stdlib/commit/1c56b737ec018cc818cebf19e5c7947fa684e126) - **docs:** update related packages sections [(#3380)](https://github.com/stdlib-js/stdlib/pull/3380) _(by stdlib-bot)_

base/cmap/benchmark/c/benchmark.length.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ static float complex identity( const float complex x ) {
103103
*
104104
* @param iterations number of iterations
105105
* @param len array length
106-
* @return elapsed time in seconds
106+
* @return elapsed time in seconds
107107
*/
108108
static double benchmark( int iterations, int len ) {
109109
float complex x[ len ];

base/dmap/benchmark/c/benchmark.length.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ static double identity( const double x ) {
102102
*
103103
* @param iterations number of iterations
104104
* @param len array length
105-
* @return elapsed time in seconds
105+
* @return elapsed time in seconds
106106
*/
107107
static double benchmark( int iterations, int len ) {
108108
double elapsed;

base/dmap2/benchmark/c/benchmark.length.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ static double add( const double x, const double y ) {
103103
*
104104
* @param iterations number of iterations
105105
* @param len array length
106-
* @return elapsed time in seconds
106+
* @return elapsed time in seconds
107107
*/
108108
static double benchmark( int iterations, int len ) {
109109
double elapsed;

base/dmskmap/benchmark/c/benchmark.length.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ static double identity( const double x ) {
103103
*
104104
* @param iterations number of iterations
105105
* @param len array length
106-
* @return elapsed time in seconds
106+
* @return elapsed time in seconds
107107
*/
108108
static double benchmark( int iterations, int len ) {
109109
uint8_t m[ len ];

base/dmskmap2/benchmark/c/benchmark.length.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ static double add( const double x, const double y ) {
104104
*
105105
* @param iterations number of iterations
106106
* @param len array length
107-
* @return elapsed time in seconds
107+
* @return elapsed time in seconds
108108
*/
109109
static double benchmark( int iterations, int len ) {
110110
uint8_t m[ len ];

base/min-view-buffer-index/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,12 @@ int main( void ) {
204204

205205
<section class="related">
206206

207+
* * *
208+
209+
## See Also
210+
211+
- <span class="package-name">[`@stdlib/strided/base/offset-view`][@stdlib/strided/base/offset-view]</span><span class="delimiter">: </span><span class="description">return a typed array view having the same data type as a provided input typed array and starting at a specified index offset.</span>
212+
207213
</section>
208214

209215
<!-- /.related -->
@@ -212,6 +218,12 @@ int main( void ) {
212218

213219
<section class="links">
214220

221+
<!-- <related-links> -->
222+
223+
[@stdlib/strided/base/offset-view]: https://github.com/stdlib-js/strided/tree/main/base/offset-view
224+
225+
<!-- </related-links> -->
226+
215227
</section>
216228

217229
<!-- /.links -->

base/smap/benchmark/c/benchmark.length.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ static float identity( const float x ) {
102102
*
103103
* @param iterations number of iterations
104104
* @param len array length
105-
* @return elapsed time in seconds
105+
* @return elapsed time in seconds
106106
*/
107107
static double benchmark( int iterations, int len ) {
108108
double elapsed;

0 commit comments

Comments
 (0)