Skip to content

Commit e9061fd

Browse files
committed
Release v0.3.0
1 parent 3a95afa commit e9061fd

File tree

9 files changed

+288
-37
lines changed

9 files changed

+288
-37
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.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

.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: 256 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,46 @@
22

33
> Package changelog.
44
5-
<section class="release" id="unreleased">
5+
<section class="release" id="v0.3.0">
66

7-
## Unreleased (2024-07-01)
7+
## 0.3.0 (2024-07-27)
8+
9+
<section class="features">
10+
11+
### Features
12+
13+
- [`757ce66`](https://github.com/stdlib-js/stdlib/commit/757ce6615c60248091852ec6b9362647a5ec1e5d) - add support for specifying integer size
14+
15+
</section>
16+
17+
<!-- /.features -->
18+
19+
<section class="bug-fixes">
20+
21+
### Bug Fixes
22+
23+
- [`5c514c7`](https://github.com/stdlib-js/stdlib/commit/5c514c7ad5828bc5047594ff001d11334f8f5670) - specify integer type to match CBLAS
24+
25+
</section>
26+
27+
<!-- /.bug-fixes -->
828

929
<section class="commits">
1030

1131
### Commits
1232

1333
<details>
1434

15-
- [`a591e05`](https://github.com/stdlib-js/stdlib/commit/a591e052cf1b1515c267781b914c6a482e150425) - **test:** fix test configuration _(by Athan Reines)_
35+
- [`d04dcbd`](https://github.com/stdlib-js/stdlib/commit/d04dcbd6dc3b0bf4a89bd3947d317fa5ff15bb38) - **docs:** remove private annotations in C comments _(by Philipp Burckhardt)_
36+
- [`aea56c1`](https://github.com/stdlib-js/stdlib/commit/aea56c1678b74530f651680c18ba28ff0f90f2d9) - **docs:** fix signature _(by Athan Reines)_
37+
- [`6226f32`](https://github.com/stdlib-js/stdlib/commit/6226f32ba8be2b8d880353194c510e629760b53f) - **docs:** update signatures _(by Athan Reines)_
38+
- [`c313ca8`](https://github.com/stdlib-js/stdlib/commit/c313ca8741ba1255d64a47382ce4dfac3227643b) - **refactor:** support building with API suffix _(by Athan Reines)_
39+
- [`5c514c7`](https://github.com/stdlib-js/stdlib/commit/5c514c7ad5828bc5047594ff001d11334f8f5670) - **fix:** specify integer type to match CBLAS _(by Athan Reines)_
40+
- [`757ce66`](https://github.com/stdlib-js/stdlib/commit/757ce6615c60248091852ec6b9362647a5ec1e5d) - **feat:** add support for specifying integer size _(by Athan Reines)_
41+
- [`38464b7`](https://github.com/stdlib-js/stdlib/commit/38464b74545be9702eda7bae820c40b56e7e7256) - **docs:** remove comments _(by Athan Reines)_
42+
- [`f1576ec`](https://github.com/stdlib-js/stdlib/commit/f1576ec5ade09cd8cd034dc0db8c9f5c7d70e3eb) - **docs:** remove comments _(by Athan Reines)_
43+
- [`c8aa78f`](https://github.com/stdlib-js/stdlib/commit/c8aa78f1fa9d895516d81301049556be008d06c0) - **build:** add separate configurations for benchmarks and examples _(by Athan Reines)_
44+
- [`0244027`](https://github.com/stdlib-js/stdlib/commit/0244027e1e2c0ceb1cd8ae1808196c24fa77b142) - **chore:** add missing trailing newlines _(by Philipp Burckhardt)_
1645

1746
</details>
1847

@@ -24,9 +53,10 @@
2453

2554
### Contributors
2655

27-
A total of 1 person contributed to this release. Thank you to this contributor:
56+
A total of 2 people contributed to this release. Thank you to the following contributors:
2857

2958
- Athan Reines
59+
- Philipp Burckhardt
3060

3161
</section>
3262

@@ -36,3 +66,225 @@ A total of 1 person contributed to this release. Thank you to this contributor:
3666

3767
<!-- /.release -->
3868

69+
<section class="release" id="v0.2.1">
70+
71+
## 0.2.1 (2024-02-22)
72+
73+
No changes reported for this release.
74+
75+
</section>
76+
77+
<!-- /.release -->
78+
79+
<section class="release" id="v0.2.0">
80+
81+
## 0.2.0 (2024-02-14)
82+
83+
<section class="commits">
84+
85+
### Commits
86+
87+
<details>
88+
89+
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
90+
- [`004b244`](https://github.com/stdlib-js/stdlib/commit/004b24478b4af2a51f2e568fe2c1efd8cb5ef59d) - **docs:** update examples to use random/array utilities _(by Athan Reines)_
91+
- [`efc6522`](https://github.com/stdlib-js/stdlib/commit/efc65220a39e226839fd507b59190d6402bebe61) - **bench:** update benchmarks to use random/array utilities _(by Athan Reines)_
92+
- [`4ec2cd0`](https://github.com/stdlib-js/stdlib/commit/4ec2cd0d22446eac8818845f4a816d2d4a1bfde2) - **docs:** update copy _(by Athan Reines)_
93+
- [`cbee5b7`](https://github.com/stdlib-js/stdlib/commit/cbee5b72476134d157d3b7f93c73ce13b99a932f) - **build:** add and update wasm configurations _(by Athan Reines)_
94+
- [`5a36be3`](https://github.com/stdlib-js/stdlib/commit/5a36be3f681bf65914abdc58bbc3142533cb2328) - **style:** resolve lint errors _(by Athan Reines)_
95+
- [`ca64b6b`](https://github.com/stdlib-js/stdlib/commit/ca64b6b7d222aa49d4a715ad2a744dffe78be6a0) - **refactor:** update implementation according to current project conventions _(by Athan Reines)_
96+
- [`df3c9b3`](https://github.com/stdlib-js/stdlib/commit/df3c9b368d8a3dd7dd38f8768deb53c2a780c055) - **build:** remove tslint directives _(by Philipp Burckhardt)_
97+
98+
</details>
99+
100+
</section>
101+
102+
<!-- /.commits -->
103+
104+
<section class="contributors">
105+
106+
### Contributors
107+
108+
A total of 2 people contributed to this release. Thank you to the following contributors:
109+
110+
- Athan Reines
111+
- Philipp Burckhardt
112+
113+
</section>
114+
115+
<!-- /.contributors -->
116+
117+
</section>
118+
119+
<!-- /.release -->
120+
121+
<section class="release" id="v0.1.1">
122+
123+
## 0.1.1 (2023-10-04)
124+
125+
No changes reported for this release.
126+
127+
</section>
128+
129+
<!-- /.release -->
130+
131+
<section class="release" id="v0.1.0">
132+
133+
## 0.1.0 (2023-09-23)
134+
135+
<section class="features">
136+
137+
### Features
138+
139+
- [`cca37d0`](https://github.com/stdlib-js/stdlib/commit/cca37d051d8c0209970fc681353fdb4e4d257a8a) - update minimum TypeScript version
140+
141+
</section>
142+
143+
<!-- /.features -->
144+
145+
<section class="breaking-changes">
146+
147+
### BREAKING CHANGES
148+
149+
- [`cca37d0`](https://github.com/stdlib-js/stdlib/commit/cca37d051d8c0209970fc681353fdb4e4d257a8a): update minimum TypeScript version
150+
- [`cca37d0`](https://github.com/stdlib-js/stdlib/commit/cca37d051d8c0209970fc681353fdb4e4d257a8a): update minimum TypeScript version to 4.1
151+
152+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
153+
154+
</section>
155+
156+
<!-- /.breaking-changes -->
157+
158+
<section class="commits">
159+
160+
### Commits
161+
162+
<details>
163+
164+
- [`cca37d0`](https://github.com/stdlib-js/stdlib/commit/cca37d051d8c0209970fc681353fdb4e4d257a8a) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
165+
- [`28e1c84`](https://github.com/stdlib-js/stdlib/commit/28e1c84390d88044883c9ef940a12f38d66ea3ef) - **docs:** resolve C lint errors _(by Athan Reines)_
166+
- [`9d552f8`](https://github.com/stdlib-js/stdlib/commit/9d552f8ee1087df295267fd3ddc2e5a04526ed6a) - **docs:** standardize parameter description and update docs _(by Athan Reines)_
167+
168+
</details>
169+
170+
</section>
171+
172+
<!-- /.commits -->
173+
174+
<section class="contributors">
175+
176+
### Contributors
177+
178+
A total of 2 people contributed to this release. Thank you to the following contributors:
179+
180+
- Athan Reines
181+
- Philipp Burckhardt
182+
183+
</section>
184+
185+
<!-- /.contributors -->
186+
187+
</section>
188+
189+
<!-- /.release -->
190+
191+
<section class="release" id="v0.0.10">
192+
193+
## 0.0.10 (2022-11-03)
194+
195+
No changes reported for this release.
196+
197+
</section>
198+
199+
<!-- /.release -->
200+
201+
<section class="release" id="v0.0.9">
202+
203+
## 0.0.9 (2022-08-30)
204+
205+
No changes reported for this release.
206+
207+
</section>
208+
209+
<!-- /.release -->
210+
211+
<section class="release" id="v0.0.8">
212+
213+
## 0.0.8 (2022-02-16)
214+
215+
No changes reported for this release.
216+
217+
</section>
218+
219+
<!-- /.release -->
220+
221+
<section class="release" id="v0.0.7">
222+
223+
## 0.0.7 (2021-08-23)
224+
225+
No changes reported for this release.
226+
227+
</section>
228+
229+
<!-- /.release -->
230+
231+
<section class="release" id="v0.0.6">
232+
233+
## 0.0.6 (2021-07-07)
234+
235+
No changes reported for this release.
236+
237+
</section>
238+
239+
<!-- /.release -->
240+
241+
<section class="release" id="v0.0.5">
242+
243+
## 0.0.5 (2021-06-27)
244+
245+
No changes reported for this release.
246+
247+
</section>
248+
249+
<!-- /.release -->
250+
251+
<section class="release" id="v0.0.4">
252+
253+
## 0.0.4 (2021-06-16)
254+
255+
No changes reported for this release.
256+
257+
</section>
258+
259+
<!-- /.release -->
260+
261+
<section class="release" id="v0.0.3">
262+
263+
## 0.0.3 (2021-06-15)
264+
265+
No changes reported for this release.
266+
267+
</section>
268+
269+
<!-- /.release -->
270+
271+
<section class="release" id="v0.0.2">
272+
273+
## 0.0.2 (2021-06-15)
274+
275+
No changes reported for this release.
276+
277+
</section>
278+
279+
<!-- /.release -->
280+
281+
<section class="release" id="v0.0.1">
282+
283+
## 0.0.1 (2021-06-14)
284+
285+
No changes reported for this release.
286+
287+
</section>
288+
289+
<!-- /.release -->
290+

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Muhammad Haris <harriskhan047@outlook.com>
5151
Naresh Jagadeesan <naresh.naresh000@gmail.com>
5252
NightKnight <Ahmedatwa866@yahoo.com>
5353
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
54+
Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com>
5455
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
5556
Oneday12323 <107678750+Oneday12323@users.noreply.github.com>
5657
Philipp Burckhardt <pburckhardt@outlook.com>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,8 +332,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
332332
[npm-image]: http://img.shields.io/npm/v/@stdlib/blas-base-dscal.svg
333333
[npm-url]: https://npmjs.org/package/@stdlib/blas-base-dscal
334334
335-
[test-image]: https://github.com/stdlib-js/blas-base-dscal/actions/workflows/test.yml/badge.svg?branch=main
336-
[test-url]: https://github.com/stdlib-js/blas-base-dscal/actions/workflows/test.yml?query=branch:main
335+
[test-image]: https://github.com/stdlib-js/blas-base-dscal/actions/workflows/test.yml/badge.svg?branch=v0.3.0
336+
[test-url]: https://github.com/stdlib-js/blas-base-dscal/actions/workflows/test.yml?query=branch:v0.3.0
337337
338338
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/blas-base-dscal/main.svg
339339
[coverage-url]: https://codecov.io/github/stdlib-js/blas-base-dscal?branch=main

0 commit comments

Comments
 (0)