Skip to content

Commit b673755

Browse files
committed
Release v0.2.2
1 parent de4185d commit b673755

File tree

8 files changed

+312
-35
lines changed

8 files changed

+312
-35
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

.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: 270 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,273 @@
22

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

0 commit comments

Comments
 (0)