Skip to content

Commit e258672

Browse files
committed
Auto-generated commit
1 parent e5edf05 commit e258672

File tree

8 files changed

+123
-40
lines changed

8 files changed

+123
-40
lines changed

.github/workflows/productionize.yml

+10-10
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

+3-3
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

+2
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

+2-2
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

+81-8
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-07-17)
7+
## Unreleased (2024-09-15)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`a541897`](https://github.com/stdlib-js/stdlib/commit/a541897dec2cd902c186d9ad128b6efd8a3ca528) - **docs:** fix grammar _(by Athan Reines)_
1516
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
1617
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_
1718
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
@@ -42,11 +43,69 @@ A total of 1 person contributed to this release. Thank you to this contributor:
4243

4344
## 0.2.1 (2024-02-25)
4445

46+
No changes reported for this release.
47+
48+
</section>
49+
50+
<!-- /.release -->
51+
52+
<section class="release" id="v0.2.0">
53+
54+
## 0.2.0 (2024-02-15)
55+
4556
<section class="features">
4657

4758
### Features
4859

4960
- [`8c4e1d2`](https://github.com/stdlib-js/stdlib/commit/8c4e1d2103aab77e648e66bfeb8f297c39f16528) - add support for returning the array data type
61+
62+
</section>
63+
64+
<!-- /.features -->
65+
66+
<section class="commits">
67+
68+
### Commits
69+
70+
<details>
71+
72+
- [`57ddb32`](https://github.com/stdlib-js/stdlib/commit/57ddb32db28da6d1869d958bc4cd306b846232fc) - **docs:** update Markdown stdlib package URLs [(#1307)](https://github.com/stdlib-js/stdlib/pull/1307) _(by stdlib-bot)_
73+
- [`8c4e1d2`](https://github.com/stdlib-js/stdlib/commit/8c4e1d2103aab77e648e66bfeb8f297c39f16528) - **feat:** add support for returning the array data type _(by Athan Reines)_
74+
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
75+
- [`c5a68f2`](https://github.com/stdlib-js/stdlib/commit/c5a68f2cd116578b2964b05681bd75b33da39607) - **build:** remove tslint directives _(by Philipp Burckhardt)_
76+
- [`df3c9b3`](https://github.com/stdlib-js/stdlib/commit/df3c9b368d8a3dd7dd38f8768deb53c2a780c055) - **build:** remove tslint directives _(by Philipp Burckhardt)_
77+
78+
</details>
79+
80+
</section>
81+
82+
<!-- /.commits -->
83+
84+
<section class="contributors">
85+
86+
### Contributors
87+
88+
A total of 2 people contributed to this release. Thank you to the following contributors:
89+
90+
- Athan Reines
91+
- Philipp Burckhardt
92+
93+
</section>
94+
95+
<!-- /.contributors -->
96+
97+
</section>
98+
99+
<!-- /.release -->
100+
101+
<section class="release" id="v0.1.0">
102+
103+
## 0.1.0 (2023-09-24)
104+
105+
<section class="features">
106+
107+
### Features
108+
50109
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - update minimum TypeScript version
51110
- [`d620bbd`](https://github.com/stdlib-js/stdlib/commit/d620bbd6e1b0670f18ed87df4f98db017cc9df8f) - refactor declarations to use generics
52111

@@ -70,8 +129,7 @@ A total of 1 person contributed to this release. Thank you to this contributor:
70129

71130
### BREAKING CHANGES
72131

73-
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version
74-
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version to 4.1
132+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version to 4.1
75133

76134
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
77135

@@ -87,11 +145,6 @@ A total of 1 person contributed to this release. Thank you to this contributor:
87145

88146
<details>
89147

90-
- [`57ddb32`](https://github.com/stdlib-js/stdlib/commit/57ddb32db28da6d1869d958bc4cd306b846232fc) - **docs:** update Markdown stdlib package URLs [(#1307)](https://github.com/stdlib-js/stdlib/pull/1307) _(by stdlib-bot)_
91-
- [`8c4e1d2`](https://github.com/stdlib-js/stdlib/commit/8c4e1d2103aab77e648e66bfeb8f297c39f16528) - **feat:** add support for returning the array data type _(by Athan Reines)_
92-
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
93-
- [`c5a68f2`](https://github.com/stdlib-js/stdlib/commit/c5a68f2cd116578b2964b05681bd75b33da39607) - **build:** remove tslint directives _(by Philipp Burckhardt)_
94-
- [`df3c9b3`](https://github.com/stdlib-js/stdlib/commit/df3c9b368d8a3dd7dd38f8768deb53c2a780c055) - **build:** remove tslint directives _(by Philipp Burckhardt)_
95148
- [`dd6d9e4`](https://github.com/stdlib-js/stdlib/commit/dd6d9e48fb0de33eae92b1dfb59d6ce00987acd5) - **fix:** convert default type to `unknown` _(by Athan Reines)_
96149
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
97150
- [`14bacb3`](https://github.com/stdlib-js/stdlib/commit/14bacb3cbfced427bcbadae7cbc649a62bb62b69) - **fix:** update import path for `Collection` type definition _(by Athan Reines)_
@@ -121,3 +174,23 @@ A total of 2 people contributed to this release. Thank you to the following cont
121174

122175
<!-- /.release -->
123176

177+
<section class="release" id="v0.0.2">
178+
179+
## 0.0.2 (2022-02-16)
180+
181+
No changes reported for this release.
182+
183+
</section>
184+
185+
<!-- /.release -->
186+
187+
<section class="release" id="v0.0.1">
188+
189+
## 0.0.1 (2022-02-05)
190+
191+
No changes reported for this release.
192+
193+
</section>
194+
195+
<!-- /.release -->
196+

CONTRIBUTORS

+8
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
2626
Frank Kovacs <fran70kk@gmail.com>
2727
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
2828
Gunj Joshi <gunjjoshi8372@gmail.com>
29+
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
2930
Harshita Kalani <harshitakalani02@gmail.com>
3031
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
3132
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
3233
James Gelok <jdgelok@gmail.com>
3334
Jaysukh Makvana <jaysukhmakvana2004@gmail.com>
35+
Jenish Thapa <141203631+jenish-thapa@users.noreply.github.com>
3436
Jithin KS <jithinks112@gmail.com>
3537
Joel Mathew Koshy <joelmathewkoshy@gmail.com>
3638
Joey Reed <joeyrreed@gmail.com>
@@ -46,11 +48,13 @@ Marcus Fantham <mfantham@users.noreply.github.com>
4648
Matt Cochrane <matthew.cochrane.eng@gmail.com>
4749
Mihir Pandit <129577900+MSP20086@users.noreply.github.com>
4850
Milan Raj <rajsite@users.noreply.github.com>
51+
Mohammad Kaif <98884589+Kaif987@users.noreply.github.com>
4952
Momtchil Momtchev <momtchil@momtchev.com>
5053
Muhammad Haris <harriskhan047@outlook.com>
5154
Naresh Jagadeesan <naresh.naresh000@gmail.com>
5255
NightKnight <Ahmedatwa866@yahoo.com>
5356
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
57+
Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com>
5458
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
5559
Oneday12323 <107678750+Oneday12323@users.noreply.github.com>
5660
Philipp Burckhardt <pburckhardt@outlook.com>
@@ -69,6 +73,7 @@ Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
6973
Rutam <138517416+performant23@users.noreply.github.com>
7074
Ryan Seal <splrk@users.noreply.github.com>
7175
Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com>
76+
SarthakPaandey <145528240+SarthakPaandey@users.noreply.github.com>
7277
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
7378
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
7479
Shivam <11shivam00@gmail.com>
@@ -83,8 +88,10 @@ Stephannie Jiménez Gacha <steff456@hotmail.com>
8388
Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com>
8489
Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
8590
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
91+
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
8692
Utkarsh <http://utkarsh11105@gmail.com>
8793
Utkarsh Raj <rajutkarsh2505@gmail.com>
94+
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
8895
Varad Gupta <varadgupta21@gmail.com>
8996
Xiaochuan Ye <tap91624@gmail.com>
9097
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
@@ -93,3 +100,4 @@ nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
93100
orimiles5 <97595296+orimiles5@users.noreply.github.com>
94101
rainn <88160429+AmCodesLame@users.noreply.github.com>
95102
rei2hu <reimu@reimu.ws>
103+
yaswanth <116426380+yaswanthkosuru@users.noreply.github.com>

docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
Input array data type.
4141

4242
out.accessorProtocol: boolean
43-
Boolean indicating whether the input array use accessors for getting and
44-
setting elements.
43+
Boolean indicating whether the input array uses accessors for getting
44+
and setting elements.
4545

4646
out.accessors: Array<Function>
4747
A two-element array whose first element is an accessor for retrieving an

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,26 @@
3737
"url": "https://github.com/stdlib-js/stdlib/issues"
3838
},
3939
"dependencies": {
40-
"@stdlib/array-base-accessor-getter": "^0.2.1",
41-
"@stdlib/array-base-accessor-setter": "^0.2.1",
42-
"@stdlib/array-base-assert-is-accessor-array": "^0.2.1",
43-
"@stdlib/array-base-getter": "^0.2.1",
44-
"@stdlib/array-base-setter": "^0.2.1",
45-
"@stdlib/array-dtype": "^0.2.1",
46-
"@stdlib/types": "^0.3.2"
40+
"@stdlib/array-base-accessor-getter": "^0.2.2",
41+
"@stdlib/array-base-accessor-setter": "^0.2.2",
42+
"@stdlib/array-base-assert-is-accessor-array": "^0.2.2",
43+
"@stdlib/array-base-getter": "^0.2.2",
44+
"@stdlib/array-base-setter": "^0.2.2",
45+
"@stdlib/array-dtype": "^0.3.0",
46+
"@stdlib/types": "^0.4.1"
4747
},
4848
"devDependencies": {
49-
"@stdlib/array-base-zeros": "^0.2.1",
50-
"@stdlib/array-complex64": "^0.2.1",
51-
"@stdlib/array-float64": "^0.2.1",
52-
"@stdlib/assert-is-collection": "^0.2.1",
53-
"@stdlib/complex-float32-ctor": "^0.0.1",
54-
"@stdlib/complex-float32-imag": "github:stdlib-js/complex-float32-imag#main",
55-
"@stdlib/complex-float32-real": "github:stdlib-js/complex-float32-real#main",
49+
"@stdlib/array-base-zeros": "^0.2.2",
50+
"@stdlib/array-complex64": "^0.3.0",
51+
"@stdlib/array-float64": "^0.2.2",
52+
"@stdlib/assert-is-collection": "^0.2.2",
53+
"@stdlib/complex-float32-ctor": "^0.0.2",
54+
"@stdlib/complex-float32-imag": "^0.1.1",
55+
"@stdlib/complex-float32-real": "^0.1.1",
5656
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5757
"istanbul": "^0.4.1",
5858
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
59-
"@stdlib/bench-harness": "^0.2.1"
59+
"@stdlib/bench-harness": "^0.2.2"
6060
},
6161
"engines": {
6262
"node": ">=0.10.0",

0 commit comments

Comments
 (0)