Skip to content

Commit 5124c2f

Browse files
committed
Release v0.3.0
1 parent d7b85fd commit 5124c2f

File tree

7 files changed

+141
-29
lines changed

7 files changed

+141
-29
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: 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: 119 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

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

7-
## Unreleased (2024-07-14)
7+
## 0.3.0 (2024-07-28)
88

99
<section class="features">
1010

@@ -52,13 +52,69 @@ A total of 2 people contributed to this release. Thank you to the following cont
5252

5353
## 0.2.1 (2024-02-24)
5454

55+
No changes reported for this release.
56+
57+
</section>
58+
59+
<!-- /.release -->
60+
61+
<section class="release" id="v0.2.0">
62+
63+
## 0.2.0 (2024-02-14)
64+
5565
<section class="features">
5666

5767
### Features
5868

5969
- [`894eb44`](https://github.com/stdlib-js/stdlib/commit/894eb448a1720439bb19f246a53bd6a5a83f8b78) - add support for 'typed' data type kind
6070
- [`8e2c3fe`](https://github.com/stdlib-js/stdlib/commit/8e2c3fe58faeb3d5001420b2d75b7d61d1305093) - add support for extending data type kind subsets with a \"generic\" data type
6171
- [`a2c3eb0`](https://github.com/stdlib-js/stdlib/commit/a2c3eb01e5b7339764ed39e0affe669a5728ce42) - add support for returning data type subsets according to a kind argument
72+
73+
</section>
74+
75+
<!-- /.features -->
76+
77+
<section class="commits">
78+
79+
### Commits
80+
81+
<details>
82+
83+
- [`894eb44`](https://github.com/stdlib-js/stdlib/commit/894eb448a1720439bb19f246a53bd6a5a83f8b78) - **feat:** add support for 'typed' data type kind _(by Athan Reines)_
84+
- [`8e2c3fe`](https://github.com/stdlib-js/stdlib/commit/8e2c3fe58faeb3d5001420b2d75b7d61d1305093) - **feat:** add support for extending data type kind subsets with a \"generic\" data type _(by Athan Reines)_
85+
- [`fca5a49`](https://github.com/stdlib-js/stdlib/commit/fca5a4950e85bac6e21ff1665924489c1bcb9643) - **bench:** fix assertion _(by Athan Reines)_
86+
- [`a2c3eb0`](https://github.com/stdlib-js/stdlib/commit/a2c3eb01e5b7339764ed39e0affe669a5728ce42) - **feat:** add support for returning data type subsets according to a kind argument _(by Athan Reines)_
87+
88+
</details>
89+
90+
</section>
91+
92+
<!-- /.commits -->
93+
94+
<section class="contributors">
95+
96+
### Contributors
97+
98+
A total of 1 person contributed to this release. Thank you to this contributor:
99+
100+
- Athan Reines
101+
102+
</section>
103+
104+
<!-- /.contributors -->
105+
106+
</section>
107+
108+
<!-- /.release -->
109+
110+
<section class="release" id="v0.1.0">
111+
112+
## 0.1.0 (2023-09-24)
113+
114+
<section class="features">
115+
116+
### Features
117+
62118
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - update minimum TypeScript version
63119

64120
</section>
@@ -84,10 +140,6 @@ A total of 2 people contributed to this release. Thank you to the following cont
84140

85141
<details>
86142

87-
- [`894eb44`](https://github.com/stdlib-js/stdlib/commit/894eb448a1720439bb19f246a53bd6a5a83f8b78) - **feat:** add support for 'typed' data type kind _(by Athan Reines)_
88-
- [`8e2c3fe`](https://github.com/stdlib-js/stdlib/commit/8e2c3fe58faeb3d5001420b2d75b7d61d1305093) - **feat:** add support for extending data type kind subsets with a \"generic\" data type _(by Athan Reines)_
89-
- [`fca5a49`](https://github.com/stdlib-js/stdlib/commit/fca5a4950e85bac6e21ff1665924489c1bcb9643) - **bench:** fix assertion _(by Athan Reines)_
90-
- [`a2c3eb0`](https://github.com/stdlib-js/stdlib/commit/a2c3eb01e5b7339764ed39e0affe669a5728ce42) - **feat:** add support for returning data type subsets according to a kind argument _(by Athan Reines)_
91143
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
92144

93145
</details>
@@ -100,9 +152,8 @@ A total of 2 people contributed to this release. Thank you to the following cont
100152

101153
### Contributors
102154

103-
A total of 2 people contributed to this release. Thank you to the following contributors:
155+
A total of 1 person contributed to this release. Thank you to this contributor:
104156

105-
- Athan Reines
106157
- Philipp Burckhardt
107158

108159
</section>
@@ -113,3 +164,63 @@ A total of 2 people contributed to this release. Thank you to the following cont
113164

114165
<!-- /.release -->
115166

167+
<section class="release" id="v0.0.6">
168+
169+
## 0.0.6 (2022-02-16)
170+
171+
No changes reported for this release.
172+
173+
</section>
174+
175+
<!-- /.release -->
176+
177+
<section class="release" id="v0.0.5">
178+
179+
## 0.0.5 (2021-08-22)
180+
181+
No changes reported for this release.
182+
183+
</section>
184+
185+
<!-- /.release -->
186+
187+
<section class="release" id="v0.0.4">
188+
189+
## 0.0.4 (2021-07-07)
190+
191+
No changes reported for this release.
192+
193+
</section>
194+
195+
<!-- /.release -->
196+
197+
<section class="release" id="v0.0.3">
198+
199+
## 0.0.3 (2021-06-27)
200+
201+
No changes reported for this release.
202+
203+
</section>
204+
205+
<!-- /.release -->
206+
207+
<section class="release" id="v0.0.2">
208+
209+
## 0.0.2 (2021-06-16)
210+
211+
No changes reported for this release.
212+
213+
</section>
214+
215+
<!-- /.release -->
216+
217+
<section class="release" id="v0.0.1">
218+
219+
## 0.0.1 (2021-06-15)
220+
221+
No changes reported for this release.
222+
223+
</section>
224+
225+
<!-- /.release -->
226+

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
@@ -231,8 +231,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
231231
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-dtypes.svg
232232
[npm-url]: https://npmjs.org/package/@stdlib/array-dtypes
233233

234-
[test-image]: https://github.com/stdlib-js/array-dtypes/actions/workflows/test.yml/badge.svg?branch=main
235-
[test-url]: https://github.com/stdlib-js/array-dtypes/actions/workflows/test.yml?query=branch:main
234+
[test-image]: https://github.com/stdlib-js/array-dtypes/actions/workflows/test.yml/badge.svg?branch=v0.3.0
235+
[test-url]: https://github.com/stdlib-js/array-dtypes/actions/workflows/test.yml?query=branch:v0.3.0
236236

237237
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-dtypes/main.svg
238238
[coverage-url]: https://codecov.io/github/stdlib-js/array-dtypes?branch=main

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/array-dtypes",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "List of array data types.",
55
"license": "Apache-2.0",
66
"author": {
@@ -37,16 +37,16 @@
3737
"url": "https://github.com/stdlib-js/stdlib/issues"
3838
},
3939
"dependencies": {
40-
"@stdlib/string-base-replace": "^0.2.1",
40+
"@stdlib/string-base-replace": "^0.2.2",
4141
"@stdlib/types": "^0.3.2"
4242
},
4343
"devDependencies": {
4444
"@stdlib/array-base-assert-contains": "^0.2.1",
45-
"@stdlib/assert-is-string-array": "^0.2.1",
45+
"@stdlib/assert-is-string-array": "^0.2.2",
4646
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
4747
"istanbul": "^0.4.1",
4848
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
49-
"@stdlib/bench-harness": "^0.2.1"
49+
"@stdlib/bench-harness": "^0.2.2"
5050
},
5151
"engines": {
5252
"node": ">=0.10.0",

0 commit comments

Comments
 (0)