Skip to content

Commit 71c3d35

Browse files
committed
Release v0.2.2
1 parent 9302ba6 commit 71c3d35

File tree

8 files changed

+168
-26
lines changed

8 files changed

+168
-26
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: 7 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"
@@ -94,6 +94,10 @@ jobs:
9494
# Replace branch in README.md link definitions for badges with the new version:
9595
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g"
9696
97+
# Rewrite CHANGELOG.md to replace "Unreleased" with the new version:
98+
sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md
99+
sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md
100+
97101
# Create a new commit and tag:
98102
git add package.json README.md
99103
git commit -m "Release v${NEW_VERSION}"
@@ -202,7 +206,7 @@ jobs:
202206
# Publish package to npm:
203207
- name: 'Publish package to npm'
204208
# Pin action to full length commit SHA
205-
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
209+
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
206210
with:
207211
token: ${{ secrets.NPM_TOKEN }}
208212
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: 134 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,137 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/array-base-zerosnd/releases) for the changelog.
5+
<section class="release" id="v0.2.2">
6+
7+
## 0.2.2 (2024-07-29)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`9ef09e2`](https://github.com/stdlib-js/stdlib/commit/9ef09e2cb6c9e777edcccaacd9d2ff681b0b4381) - **docs:** update related packages sections [(#2248)](https://github.com/stdlib-js/stdlib/pull/2248) _(by stdlib-bot)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
</section>
24+
25+
<!-- /.release -->
26+
27+
<section class="release" id="v0.2.1">
28+
29+
## 0.2.1 (2024-02-24)
30+
31+
No changes reported for this release.
32+
33+
</section>
34+
35+
<!-- /.release -->
36+
37+
<section class="release" id="v0.2.0">
38+
39+
## 0.2.0 (2024-02-14)
40+
41+
<section class="commits">
42+
43+
### Commits
44+
45+
<details>
46+
47+
- [`23114c6`](https://github.com/stdlib-js/stdlib/commit/23114c65f67ea8c17fc835e280408c39544dfa76) - **build:** remove tslint directives _(by Philipp Burckhardt)_
48+
- [`de93ae0`](https://github.com/stdlib-js/stdlib/commit/de93ae01f1d5e234696e02b9e778d3d71515f5b7) - **build:** remove tslint directives _(by Philipp Burckhardt)_
49+
50+
</details>
51+
52+
</section>
53+
54+
<!-- /.commits -->
55+
56+
<section class="contributors">
57+
58+
### Contributors
59+
60+
A total of 1 person contributed to this release. Thank you to this contributor:
61+
62+
- Philipp Burckhardt
63+
64+
</section>
65+
66+
<!-- /.contributors -->
67+
68+
</section>
69+
70+
<!-- /.release -->
71+
72+
<section class="release" id="v0.1.0">
73+
74+
## 0.1.0 (2023-09-24)
75+
76+
No changes reported for this release.
77+
78+
</section>
79+
80+
<!-- /.release -->
81+
82+
<section class="release" id="v0.0.1">
83+
84+
## 0.0.1 (2023-08-25)
85+
86+
<section class="features">
87+
88+
### Features
89+
90+
- [`76174ba`](https://github.com/stdlib-js/stdlib/commit/76174bacaae018ee0c56fcf8555d281c35d63fa5) - add `array/base/zerosnd`
91+
92+
</section>
93+
94+
<!-- /.features -->
95+
96+
<section class="bug-fixes">
97+
98+
### Bug Fixes
99+
100+
- [`14bacb3`](https://github.com/stdlib-js/stdlib/commit/14bacb3cbfced427bcbadae7cbc649a62bb62b69) - update import path for `Collection` type definition
101+
102+
</section>
103+
104+
<!-- /.bug-fixes -->
105+
106+
<section class="commits">
107+
108+
### Commits
109+
110+
<details>
111+
112+
- [`24589df`](https://github.com/stdlib-js/stdlib/commit/24589df478a187ff536d7879d6658e80e9274987) - **refactor:** use generics to improve type specificity _(by Athan Reines)_
113+
- [`14bacb3`](https://github.com/stdlib-js/stdlib/commit/14bacb3cbfced427bcbadae7cbc649a62bb62b69) - **fix:** update import path for `Collection` type definition _(by Athan Reines)_
114+
- [`6b9c950`](https://github.com/stdlib-js/stdlib/commit/6b9c95082a177ac4a04c44c606b2473e43a7b4ad) - **docs:** fix description _(by Athan Reines)_
115+
- [`76174ba`](https://github.com/stdlib-js/stdlib/commit/76174bacaae018ee0c56fcf8555d281c35d63fa5) - **feat:** add `array/base/zerosnd` _(by Athan Reines)_
116+
117+
</details>
118+
119+
</section>
120+
121+
<!-- /.commits -->
122+
123+
<section class="contributors">
124+
125+
### Contributors
126+
127+
A total of 1 person contributed to this release. Thank you to this contributor:
128+
129+
- Athan Reines
130+
131+
</section>
132+
133+
<!-- /.contributors -->
134+
135+
</section>
136+
137+
<!-- /.release -->
138+

CONTRIBUTORS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Frank Kovacs <fran70kk@gmail.com>
2727
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
2828
Gunj Joshi <gunjjoshi8372@gmail.com>
2929
Harshita Kalani <harshitakalani02@gmail.com>
30+
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
3031
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
3132
James Gelok <jdgelok@gmail.com>
3233
Jaysukh Makvana <jaysukhmakvana2004@gmail.com>
@@ -50,6 +51,7 @@ Muhammad Haris <harriskhan047@outlook.com>
5051
Naresh Jagadeesan <naresh.naresh000@gmail.com>
5152
NightKnight <Ahmedatwa866@yahoo.com>
5253
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
54+
Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com>
5355
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
5456
Oneday12323 <107678750+Oneday12323@users.noreply.github.com>
5557
Philipp Burckhardt <pburckhardt@outlook.com>
@@ -62,6 +64,7 @@ Pushpendra Chandravanshi <pushpendrachandravanshi4@gmail.com>
6264
Raunak Kumar Gupta <raunakmodanwal321@gmail.com>
6365
Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
6466
Ricky Reusser <rsreusser@gmail.com>
67+
Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
6568
Robert Gislason <gztown2216@yahoo.com>
6669
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
6770
Rutam <138517416+performant23@users.noreply.github.com>
@@ -74,7 +77,7 @@ Shraddheya Shendre <shendreshraddheya@gmail.com>
7477
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
7578
Shubham Mishra <shubh622005@gmail.com>
7679
Sivam Das <100067002+Sivam2313@users.noreply.github.com>
77-
Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
80+
Snehil Shah <snehilshah.989@gmail.com>
7881
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
7982
Spandan Barve <contact@marsian.dev>
8083
Stephannie Jiménez Gacha <steff456@hotmail.com>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
191191
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-zerosnd.svg
192192
[npm-url]: https://npmjs.org/package/@stdlib/array-base-zerosnd
193193

194-
[test-image]: https://github.com/stdlib-js/array-base-zerosnd/actions/workflows/test.yml/badge.svg?branch=main
195-
[test-url]: https://github.com/stdlib-js/array-base-zerosnd/actions/workflows/test.yml?query=branch:main
194+
[test-image]: https://github.com/stdlib-js/array-base-zerosnd/actions/workflows/test.yml/badge.svg?branch=v0.2.2
195+
[test-url]: https://github.com/stdlib-js/array-base-zerosnd/actions/workflows/test.yml?query=branch:v0.2.2
196196

197197
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-zerosnd/main.svg
198198
[coverage-url]: https://codecov.io/github/stdlib-js/array-base-zerosnd?branch=main

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/array-base-zerosnd",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Create a zero-filled n-dimensional nested array.",
55
"license": "Apache-2.0",
66
"author": {
@@ -41,15 +41,15 @@
4141
"@stdlib/types": "^0.3.2"
4242
},
4343
"devDependencies": {
44-
"@stdlib/assert-is-array-array": "^0.2.1",
45-
"@stdlib/math-base-special-cbrt": "^0.2.1",
46-
"@stdlib/math-base-special-floor": "^0.2.2",
47-
"@stdlib/math-base-special-pow": "^0.2.1",
48-
"@stdlib/math-base-special-sqrt": "^0.2.1",
44+
"@stdlib/assert-is-array-array": "^0.2.2",
45+
"@stdlib/math-base-special-cbrt": "^0.2.2",
46+
"@stdlib/math-base-special-floor": "^0.2.3",
47+
"@stdlib/math-base-special-pow": "^0.3.0",
48+
"@stdlib/math-base-special-sqrt": "^0.2.2",
4949
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5050
"istanbul": "^0.4.1",
5151
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
52-
"@stdlib/bench-harness": "^0.2.1"
52+
"@stdlib/bench-harness": "^0.2.2"
5353
},
5454
"engines": {
5555
"node": ">=0.10.0",

0 commit comments

Comments
 (0)