Skip to content

Commit 2b3d896

Browse files
committed
Auto-generated commit
1 parent 1c08fe0 commit 2b3d896

File tree

8 files changed

+115
-46
lines changed

8 files changed

+115
-46
lines changed

.github/workflows/productionize.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ jobs:
9494
node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );"
9595
fi
9696
97-
# Configure git:
98-
- name: 'Configure git'
97+
# Configure Git:
98+
- name: 'Configure Git'
9999
run: |
100100
git config --local user.email "noreply@stdlib.io"
101101
git config --local user.name "stdlib-bot"
@@ -191,8 +191,8 @@ jobs:
191191
# Pin action to full length commit SHA
192192
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
193193

194-
# Configure git:
195-
- name: 'Configure git'
194+
# Configure Git:
195+
- name: 'Configure Git'
196196
run: |
197197
git config --local user.email "noreply@stdlib.io"
198198
git config --local user.name "stdlib-bot"
@@ -366,8 +366,8 @@ jobs:
366366
# Pin action to full length commit SHA
367367
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
368368

369-
# Configure git:
370-
- name: 'Configure git'
369+
# Configure Git:
370+
- name: 'Configure Git'
371371
run: |
372372
git config --local user.email "noreply@stdlib.io"
373373
git config --local user.name "stdlib-bot"
@@ -539,8 +539,8 @@ jobs:
539539
# Pin action to full length commit SHA
540540
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
541541

542-
# Configure git:
543-
- name: 'Configure git'
542+
# Configure Git:
543+
- name: 'Configure Git'
544544
run: |
545545
git config --local user.email "noreply@stdlib.io"
546546
git config --local user.name "stdlib-bot"
@@ -735,8 +735,8 @@ jobs:
735735
echo "bump=true" >> $GITHUB_OUTPUT
736736
fi
737737
738-
# Configure git:
739-
- name: 'Configure git'
738+
# Configure Git:
739+
- name: 'Configure Git'
740740
if: steps.check-if-bump.outputs.bump
741741
run: |
742742
git config --local user.email "noreply@stdlib.io"

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ jobs:
7272
node-version: 20
7373
timeout-minutes: 5
7474

75-
# Configure git:
76-
- name: 'Configure git'
75+
# Configure Git:
76+
- name: 'Configure Git'
7777
run: |
7878
git config --local user.email "noreply@stdlib.io"
7979
git config --local user.name "stdlib-bot"
@@ -206,7 +206,7 @@ jobs:
206206
# Publish package to npm:
207207
- name: 'Publish package to npm'
208208
# Pin action to full length commit SHA
209-
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
209+
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
210210
with:
211211
token: ${{ secrets.NPM_TOKEN }}
212212
access: public

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ docs/**/node_modules/
101101
pids
102102
*.pid
103103
*.seed
104+
yarn.lock
105+
package-lock.json
104106

105107
# Typescript #
106108
##############

.npmrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ shrinkwrap = false
2727
# Disable automatically "saving" dependencies on install:
2828
save = false
2929

30-
# Generate provenance metadata:
31-
provenance = true
30+
# Do not generate provenance metadata:
31+
provenance = false

CHANGELOG.md

Lines changed: 61 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-07-18)
7+
## Unreleased (2024-09-28)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
1516
- [`0406147`](https://github.com/stdlib-js/stdlib/commit/04061476d1036e1b8b786736b1ba1653eddff1ef) - **refactor:** update paths _(by Athan Reines)_
1617
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
1718
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_
@@ -27,9 +28,10 @@
2728

2829
### Contributors
2930

30-
A total of 1 person contributed to this release. Thank you to this contributor:
31+
A total of 2 people contributed to this release. Thank you to the following contributors:
3132

3233
- Athan Reines
34+
- Philipp Burckhardt
3335

3436
</section>
3537

@@ -43,6 +45,52 @@ A total of 1 person contributed to this release. Thank you to this contributor:
4345

4446
## 0.2.1 (2024-02-25)
4547

48+
No changes reported for this release.
49+
50+
</section>
51+
52+
<!-- /.release -->
53+
54+
<section class="release" id="v0.2.0">
55+
56+
## 0.2.0 (2024-02-15)
57+
58+
<section class="commits">
59+
60+
### Commits
61+
62+
<details>
63+
64+
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
65+
- [`cacca61`](https://github.com/stdlib-js/stdlib/commit/cacca61bc884c5c1805716236733cf378d0ce955) - **docs:** update links _(by Athan Reines)_
66+
67+
</details>
68+
69+
</section>
70+
71+
<!-- /.commits -->
72+
73+
<section class="contributors">
74+
75+
### Contributors
76+
77+
A total of 2 people contributed to this release. Thank you to the following contributors:
78+
79+
- Athan Reines
80+
- Philipp Burckhardt
81+
82+
</section>
83+
84+
<!-- /.contributors -->
85+
86+
</section>
87+
88+
<!-- /.release -->
89+
90+
<section class="release" id="v0.1.0">
91+
92+
## 0.1.0 (2023-09-24)
93+
4694
<section class="features">
4795

4896
### Features
@@ -67,8 +115,7 @@ A total of 1 person contributed to this release. Thank you to this contributor:
67115

68116
### BREAKING CHANGES
69117

70-
- [`ace728f`](https://github.com/stdlib-js/stdlib/commit/ace728f330033182c28199dc9e13d75eda18cfe0): update minimum TypeScript version
71-
- [`ace728f`](https://github.com/stdlib-js/stdlib/commit/ace728f330033182c28199dc9e13d75eda18cfe0): update minimum TypeScript version to 4.1
118+
- [`ace728f`](https://github.com/stdlib-js/stdlib/commit/ace728f330033182c28199dc9e13d75eda18cfe0): update minimum TypeScript version to 4.1
72119

73120
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
74121

@@ -82,8 +129,6 @@ A total of 1 person contributed to this release. Thank you to this contributor:
82129

83130
<details>
84131

85-
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
86-
- [`cacca61`](https://github.com/stdlib-js/stdlib/commit/cacca61bc884c5c1805716236733cf378d0ce955) - **docs:** update links _(by Athan Reines)_
87132
- [`cb52e02`](https://github.com/stdlib-js/stdlib/commit/cb52e0271914a717355ba2b37c1b702771eb141a) - **fix:** update import path for `Collection` type definition and improve type specificity _(by Athan Reines)_
88133
- [`ace728f`](https://github.com/stdlib-js/stdlib/commit/ace728f330033182c28199dc9e13d75eda18cfe0) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
89134

@@ -110,3 +155,13 @@ A total of 2 people contributed to this release. Thank you to the following cont
110155

111156
<!-- /.release -->
112157

158+
<section class="release" id="v0.0.1">
159+
160+
## 0.0.1 (2022-02-16)
161+
162+
No changes reported for this release.
163+
164+
</section>
165+
166+
<!-- /.release -->
167+

CONTRIBUTORS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aayush Khanna <96649223+aayush0325@users.noreply.github.com>
56
Adarsh Palaskar <adarshpalaskar99@gmail.com>
67
Aditya Sapra <adityaework@gmail.com>
78
AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com>
@@ -20,23 +21,27 @@ Christopher Dambamuromo <chridam@gmail.com>
2021
Dan Rose <danoftheroses@gmail.com>
2122
Daniel Killenberger <daniel.killenberger@gmail.com>
2223
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
24+
Debashis Maharana <debashismaharana7854@gmail.com>
2325
Dominik Moritz <domoritz@gmail.com>
2426
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
2527
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
2628
Frank Kovacs <fran70kk@gmail.com>
2729
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
2830
Gunj Joshi <gunjjoshi8372@gmail.com>
31+
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
2932
Harshita Kalani <harshitakalani02@gmail.com>
3033
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
3134
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
3235
James Gelok <jdgelok@gmail.com>
3336
Jaysukh Makvana <jaysukhmakvana2004@gmail.com>
37+
Jenish Thapa <141203631+jenish-thapa@users.noreply.github.com>
3438
Jithin KS <jithinks112@gmail.com>
3539
Joel Mathew Koshy <joelmathewkoshy@gmail.com>
3640
Joey Reed <joeyrreed@gmail.com>
3741
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
3842
Joris Labie <joris.labie1@gmail.com>
3943
Justin Dennison <justin1dennison@gmail.com>
44+
Kaif Mohd <mdkaifprofession@gmail.com>
4045
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
4146
Khaldon <kahmd1444@gmail.com>
4247
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
@@ -46,11 +51,13 @@ Marcus Fantham <mfantham@users.noreply.github.com>
4651
Matt Cochrane <matthew.cochrane.eng@gmail.com>
4752
Mihir Pandit <129577900+MSP20086@users.noreply.github.com>
4853
Milan Raj <rajsite@users.noreply.github.com>
54+
Mohammad Kaif <98884589+Kaif987@users.noreply.github.com>
4955
Momtchil Momtchev <momtchil@momtchev.com>
5056
Muhammad Haris <harriskhan047@outlook.com>
5157
Naresh Jagadeesan <naresh.naresh000@gmail.com>
5258
NightKnight <Ahmedatwa866@yahoo.com>
5359
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
60+
Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com>
5461
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
5562
Oneday12323 <107678750+Oneday12323@users.noreply.github.com>
5663
Philipp Burckhardt <pburckhardt@outlook.com>
@@ -69,6 +76,7 @@ Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
6976
Rutam <138517416+performant23@users.noreply.github.com>
7077
Ryan Seal <splrk@users.noreply.github.com>
7178
Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com>
79+
SarthakPaandey <145528240+SarthakPaandey@users.noreply.github.com>
7280
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
7381
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
7482
Shivam <11shivam00@gmail.com>
@@ -83,13 +91,17 @@ Stephannie Jiménez Gacha <steff456@hotmail.com>
8391
Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com>
8492
Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
8593
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
94+
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
8695
Utkarsh <http://utkarsh11105@gmail.com>
8796
Utkarsh Raj <rajutkarsh2505@gmail.com>
97+
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
8898
Varad Gupta <varadgupta21@gmail.com>
8999
Xiaochuan Ye <tap91624@gmail.com>
90100
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
91101
naveen <stupiddint@gmail.com>
92102
nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
103+
olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com>
93104
orimiles5 <97595296+orimiles5@users.noreply.github.com>
94105
rainn <88160429+AmCodesLame@users.noreply.github.com>
95106
rei2hu <reimu@reimu.ws>
107+
yaswanth <116426380+yaswanthkosuru@users.noreply.github.com>

docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function mapper( value: number ): number {
3333
* Reducing function.
3434
*
3535
* @param acc - accumulated value
36-
* @param v - array element
36+
* @param value - array element
3737
* @returns result
3838
*/
3939
function reducer( acc: number, value: number ): number {

package.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -38,38 +38,38 @@
3838
},
3939
"dependencies": {
4040
"@stdlib/array-base-arraylike2object": "^0.2.1",
41-
"@stdlib/assert-is-array-like-object": "^0.2.1",
42-
"@stdlib/assert-is-function": "^0.2.1",
43-
"@stdlib/assert-is-ndarray-like": "^0.2.1",
44-
"@stdlib/ndarray-base-ndarraylike2object": "^0.2.1",
45-
"@stdlib/ndarray-base-vind2bind": "^0.2.1",
46-
"@stdlib/string-format": "^0.2.1",
47-
"@stdlib/types": "^0.3.2",
48-
"@stdlib/error-tools-fmtprodmsg": "^0.2.1"
41+
"@stdlib/assert-is-array-like-object": "^0.2.2",
42+
"@stdlib/assert-is-function": "^0.2.2",
43+
"@stdlib/assert-is-ndarray-like": "^0.2.2",
44+
"@stdlib/ndarray-base-ndarraylike2object": "^0.2.2",
45+
"@stdlib/ndarray-base-vind2bind": "^0.2.2",
46+
"@stdlib/string-format": "^0.2.2",
47+
"@stdlib/types": "^0.4.1",
48+
"@stdlib/error-tools-fmtprodmsg": "^0.2.2"
4949
},
5050
"devDependencies": {
51-
"@stdlib/array-base-filled": "^0.2.1",
52-
"@stdlib/array-complex64": "^0.2.1",
51+
"@stdlib/array-base-filled": "^0.2.2",
52+
"@stdlib/array-complex64": "^0.3.0",
5353
"@stdlib/array-filled-by": "^0.2.1",
54-
"@stdlib/array-float64": "^0.2.1",
55-
"@stdlib/complex-float32-ctor": "^0.0.1",
56-
"@stdlib/complex-float32-imag": "^0.1.0",
57-
"@stdlib/complex-float32-real": "^0.1.0",
58-
"@stdlib/complex-float64-base-add": "github:stdlib-js/complex-float64-base-add#main",
59-
"@stdlib/math-base-assert-is-nan": "^0.2.1",
60-
"@stdlib/math-base-ops-add": "^0.2.1",
61-
"@stdlib/math-base-special-abs": "^0.2.1",
62-
"@stdlib/math-base-special-cceil": "^0.2.1",
63-
"@stdlib/math-base-special-pow": "^0.2.1",
54+
"@stdlib/array-float64": "^0.2.2",
55+
"@stdlib/complex-float32-ctor": "^0.0.2",
56+
"@stdlib/complex-float32-imag": "^0.1.1",
57+
"@stdlib/complex-float32-real": "^0.1.1",
58+
"@stdlib/complex-float64-base-add": "^0.1.0",
59+
"@stdlib/math-base-assert-is-nan": "^0.2.2",
60+
"@stdlib/math-base-ops-add": "^0.2.2",
61+
"@stdlib/math-base-special-abs": "^0.2.2",
62+
"@stdlib/math-base-special-cceil": "^0.2.2",
63+
"@stdlib/math-base-special-pow": "^0.3.0",
6464
"@stdlib/ndarray-array": "^0.2.1",
65-
"@stdlib/ndarray-ctor": "^0.2.1",
65+
"@stdlib/ndarray-ctor": "^0.2.2",
6666
"@stdlib/random-base-discrete-uniform": "^0.2.1",
67-
"@stdlib/utils-nary-function": "^0.2.1",
68-
"@stdlib/utils-noop": "^0.2.1",
67+
"@stdlib/utils-nary-function": "^0.2.2",
68+
"@stdlib/utils-noop": "^0.2.2",
6969
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
7070
"istanbul": "^0.4.1",
7171
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
72-
"@stdlib/bench-harness": "^0.2.1"
72+
"@stdlib/bench-harness": "^0.2.2"
7373
},
7474
"engines": {
7575
"node": ">=0.10.0",

0 commit comments

Comments
 (0)