Skip to content

Commit 58289e9

Browse files
committed
Release v0.2.2
1 parent 865c48d commit 58289e9

File tree

8 files changed

+308
-36
lines changed

8 files changed

+308
-36
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 "[email protected]"
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 "[email protected]"
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 "[email protected]"
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 "[email protected]"
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 "[email protected]"

.github/workflows/publish.yml

+7-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 "[email protected]"
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

.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

+265-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,268 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/blas-ext-base-drev/releases) for the changelog.
5+
<section class="release" id="v0.2.2">
6+
7+
## 0.2.2 (2024-07-28)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#1488](https://github.com/stdlib-js/stdlib/issues/1488)
16+
17+
</section>
18+
19+
<!-- /.issues -->
20+
21+
<section class="commits">
22+
23+
### Commits
24+
25+
<details>
26+
27+
- [`d04dcbd`](https://github.com/stdlib-js/stdlib/commit/d04dcbd6dc3b0bf4a89bd3947d317fa5ff15bb38) - **docs:** remove private annotations in C comments _(by Philipp Burckhardt)_
28+
- [`ceb4943`](https://github.com/stdlib-js/stdlib/commit/ceb494351d42c2505e559a2c8aad9a120c76d0db) - **docs:** remove comments _(by Athan Reines)_
29+
- [`c81e201`](https://github.com/stdlib-js/stdlib/commit/c81e2014d3b65f8f3ee1ad34a7c2ea08537becc8) - **refactor:** update `blas/ext/base/drev` to follow current project conventions [(#1839)](https://github.com/stdlib-js/stdlib/pull/1839) _(by Rutam, Athan Reines, Pranav Goswami)_
30+
31+
</details>
32+
33+
</section>
34+
35+
<!-- /.commits -->
36+
37+
<section class="contributors">
38+
39+
### Contributors
40+
41+
A total of 4 people contributed to this release. Thank you to the following contributors:
42+
43+
- Athan Reines
44+
- Philipp Burckhardt
45+
- Pranav Goswami
46+
- Rutam
47+
48+
</section>
49+
50+
<!-- /.contributors -->
51+
52+
</section>
53+
54+
<!-- /.release -->
55+
56+
<section class="release" id="v0.2.1">
57+
58+
## 0.2.1 (2024-02-24)
59+
60+
No changes reported for this release.
61+
62+
</section>
63+
64+
<!-- /.release -->
65+
66+
<section class="release" id="v0.2.0">
67+
68+
## 0.2.0 (2024-02-14)
69+
70+
<section class="commits">
71+
72+
### Commits
73+
74+
<details>
75+
76+
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
77+
- [`df3c9b3`](https://github.com/stdlib-js/stdlib/commit/df3c9b368d8a3dd7dd38f8768deb53c2a780c055) - **build:** remove tslint directives _(by Philipp Burckhardt)_
78+
79+
</details>
80+
81+
</section>
82+
83+
<!-- /.commits -->
84+
85+
<section class="contributors">
86+
87+
### Contributors
88+
89+
A total of 1 person contributed to this release. Thank you to this contributor:
90+
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-23)
104+
105+
<section class="features">
106+
107+
### Features
108+
109+
- [`cca37d0`](https://github.com/stdlib-js/stdlib/commit/cca37d051d8c0209970fc681353fdb4e4d257a8a) - update minimum TypeScript version
110+
111+
</section>
112+
113+
<!-- /.features -->
114+
115+
<section class="breaking-changes">
116+
117+
### BREAKING CHANGES
118+
119+
- [`cca37d0`](https://github.com/stdlib-js/stdlib/commit/cca37d051d8c0209970fc681353fdb4e4d257a8a): update minimum TypeScript version
120+
- [`cca37d0`](https://github.com/stdlib-js/stdlib/commit/cca37d051d8c0209970fc681353fdb4e4d257a8a): update minimum TypeScript version to 4.1
121+
122+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
123+
124+
</section>
125+
126+
<!-- /.breaking-changes -->
127+
128+
<section class="commits">
129+
130+
### Commits
131+
132+
<details>
133+
134+
- [`cca37d0`](https://github.com/stdlib-js/stdlib/commit/cca37d051d8c0209970fc681353fdb4e4d257a8a) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
135+
- [`28e1c84`](https://github.com/stdlib-js/stdlib/commit/28e1c84390d88044883c9ef940a12f38d66ea3ef) - **docs:** resolve C lint errors _(by Athan Reines)_
136+
137+
</details>
138+
139+
</section>
140+
141+
<!-- /.commits -->
142+
143+
<section class="contributors">
144+
145+
### Contributors
146+
147+
A total of 2 people contributed to this release. Thank you to the following contributors:
148+
149+
- Athan Reines
150+
- Philipp Burckhardt
151+
152+
</section>
153+
154+
<!-- /.contributors -->
155+
156+
</section>
157+
158+
<!-- /.release -->
159+
160+
<section class="release" id="v0.0.11">
161+
162+
## 0.0.11 (2022-08-29)
163+
164+
No changes reported for this release.
165+
166+
</section>
167+
168+
<!-- /.release -->
169+
170+
<section class="release" id="v0.0.10">
171+
172+
## 0.0.10 (2022-07-08)
173+
174+
No changes reported for this release.
175+
176+
</section>
177+
178+
<!-- /.release -->
179+
180+
<section class="release" id="v0.0.9">
181+
182+
## 0.0.9 (2022-07-07)
183+
184+
No changes reported for this release.
185+
186+
</section>
187+
188+
<!-- /.release -->
189+
190+
<section class="release" id="v0.0.8">
191+
192+
## 0.0.8 (2022-02-16)
193+
194+
No changes reported for this release.
195+
196+
</section>
197+
198+
<!-- /.release -->
199+
200+
<section class="release" id="v0.0.7">
201+
202+
## 0.0.7 (2021-08-22)
203+
204+
No changes reported for this release.
205+
206+
</section>
207+
208+
<!-- /.release -->
209+
210+
<section class="release" id="v0.0.6">
211+
212+
## 0.0.6 (2021-07-07)
213+
214+
No changes reported for this release.
215+
216+
</section>
217+
218+
<!-- /.release -->
219+
220+
<section class="release" id="v0.0.5">
221+
222+
## 0.0.5 (2021-06-27)
223+
224+
No changes reported for this release.
225+
226+
</section>
227+
228+
<!-- /.release -->
229+
230+
<section class="release" id="v0.0.4">
231+
232+
## 0.0.4 (2021-06-16)
233+
234+
No changes reported for this release.
235+
236+
</section>
237+
238+
<!-- /.release -->
239+
240+
<section class="release" id="v0.0.3">
241+
242+
## 0.0.3 (2021-06-15)
243+
244+
No changes reported for this release.
245+
246+
</section>
247+
248+
<!-- /.release -->
249+
250+
<section class="release" id="v0.0.2">
251+
252+
## 0.0.2 (2021-06-15)
253+
254+
No changes reported for this release.
255+
256+
</section>
257+
258+
<!-- /.release -->
259+
260+
<section class="release" id="v0.0.1">
261+
262+
## 0.0.1 (2021-06-14)
263+
264+
No changes reported for this release.
265+
266+
</section>
267+
268+
<!-- /.release -->
269+

0 commit comments

Comments
 (0)