Skip to content

Commit 8d8be6a

Browse files
committed
Auto-generated commit
1 parent 68f3f0a commit 8d8be6a

File tree

7 files changed

+34
-26
lines changed

7 files changed

+34
-26
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/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-01)
7+
## Unreleased (2024-12-23)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_
2526
- [`e4f28df`](https://github.com/stdlib-js/stdlib/commit/e4f28df214f15513bdafeb5a6bbc3bde115dc63b) - **feat:** add C `ndarray` implementation for `blas/base/ddot` [(#2936)](https://github.com/stdlib-js/stdlib/pull/2936) _(by Aman Bhansali)_
2627
- [`2777e4b`](https://github.com/stdlib-js/stdlib/commit/2777e4be161869d09406e3b17947d24c64b47af2) - **bench:** resolve lint errors in benchmarks _(by Athan Reines)_
2728

@@ -35,10 +36,11 @@
3536

3637
### Contributors
3738

38-
A total of 2 people contributed to this release. Thank you to the following contributors:
39+
A total of 3 people contributed to this release. Thank you to the following contributors:
3940

4041
- Aman Bhansali
4142
- Athan Reines
43+
- Philipp Burckhardt
4244

4345
</section>
4446

CONTRIBUTORS

Lines changed: 23 additions & 16 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]>
67
Abhijit Raut <[email protected]>
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,8 @@ 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+
Divyansh Seth <[email protected]>
2631
Dominic Lim <[email protected]>
2732
Dominik Moritz <[email protected]>
2833
Dorrin Sotoudeh <[email protected]>
@@ -45,12 +50,12 @@ Jordan Gallivan <[email protected]>
4550
Joris Labie <[email protected]>
4651
Justin Dennison <[email protected]>
4752
Karthik Prakash <[email protected]>
48-
4953
Kohantika Nath <[email protected]>
5054
Krishnendu Das <[email protected]>
5155
Kshitij-Dale <[email protected]>
52-
56+
Lovelin Dhoni J B <[email protected]>
5357
Manik Sharma <[email protected]>
58+
Manvith M <[email protected]>
5459
Marcus Fantham <[email protected]>
5560
Matt Cochrane <[email protected]>
5661
Mihir Pandit <[email protected]>
@@ -59,37 +64,41 @@ Mohammad Kaif <[email protected]>
5964
Momtchil Momtchev <[email protected]>
6065
Muhammad Haris <[email protected]>
6166
Naresh Jagadeesan <[email protected]>
67+
Naveen Kumar <[email protected]>
6268
Neeraj Pathak <[email protected]>
63-
NightKnight <Ahmedatwa866@yahoo.com>
69+
Nishant Shinde <[email protected].com>
6470
Nithin Katta <[email protected]>
6571
Nourhan Hasan <[email protected]>
6672
Ognjen Jevremović <[email protected]>
6773
Oneday12323 <[email protected]>
74+
Ori Miles <[email protected]>
6875
Philipp Burckhardt <[email protected]>
6976
Prajwal Kulkarni <[email protected]>
7077
Pranav Goswami <[email protected]>
71-
72-
78+
Pranjal Jha <[email protected]>
79+
Prashant Kumar Yadav <[email protected]>
80+
Pratik Singh <[email protected]>
7381
Pratyush Kumar Chouhan <[email protected]>
74-
82+
Priyansh Prajapati <[email protected]>
83+
Priyanshu Agarwal <[email protected]>
7584
Pushpendra Chandravanshi <[email protected]>
76-
7785
Raunak Kumar Gupta <[email protected]>
7886
Rejoan Sardar <[email protected]>
7987
Ricky Reusser <[email protected]>
8088
Ridam Garg <[email protected]>
89+
8190
Robert Gislason <[email protected]>
8291
Roman Stetsyk <[email protected]>
83-
92+
Rutam Kathale <[email protected]>
8493
Ruthwik Chikoti <[email protected]>
8594
Ryan Seal <[email protected]>
8695
Rylan Yang <[email protected]>
8796
Sai Srikar Dumpeti <[email protected]>
88-
SarthakPaandey <[email protected]>
97+
Sarthak Paandey <[email protected]>
8998
Saurabh Singh <[email protected]>
9099
Seyyed Parsa Neshaei <[email protected]>
91100
Shashank Shekhar Singh <[email protected]>
92-
101+
Shivam Ahir <[email protected]>
93102
Shraddheya Shendre <[email protected]>
94103
Shubh Mehta <[email protected]>
95104
Shubham Mishra <[email protected]>
@@ -98,7 +107,7 @@ Snehil Shah <[email protected]>
98107
Soumajit Chatterjee <[email protected]>
99108
Spandan Barve <[email protected]>
100109
Stephannie Jiménez Gacha <[email protected]>
101-
Suraj kumar <[email protected]>
110+
Suraj Kumar <[email protected]>
102111
Tirtadwipa Manunggal <[email protected]>
103112
Tudor Pagu <[email protected]>
104113
Tufailahmed Bargir <[email protected]>
@@ -108,12 +117,10 @@ UtkershBasnet <[email protected]>
108117
Vaibhav Patel <[email protected]>
109118
Varad Gupta <[email protected]>
110119
Vinit Pandit <[email protected]>
120+
Vivek maurya <[email protected]>
111121
Xiaochuan Ye <[email protected]>
122+
Yaswanth Kosuru <[email protected]>
112123
Yernar Yergaziyev <[email protected]>
113-
114-
nishant-s7 <[email protected]>
115124
olenkabilonizhka <[email protected]>
116-
orimiles5 <[email protected]>
117125
118126
119-

benchmark/c/benchmark.length.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static double rand_double( void ) {
9292
*
9393
* @param iterations number of iterations
9494
* @param len array length
95-
* @return elapsed time in seconds
95+
* @return elapsed time in seconds
9696
*/
9797
static double benchmark1( int iterations, int len ) {
9898
double elapsed;
@@ -127,7 +127,7 @@ static double benchmark1( int iterations, int len ) {
127127
*
128128
* @param iterations number of iterations
129129
* @param len array length
130-
* @return elapsed time in seconds
130+
* @return elapsed time in seconds
131131
*/
132132
static double benchmark2( int iterations, int len ) {
133133
double elapsed;

0 commit comments

Comments
 (0)