Skip to content

Commit 06e0bd4

Browse files
committed
Release v0.2.2
1 parent bd9b058 commit 06e0bd4

File tree

9 files changed

+270
-37
lines changed

9 files changed

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

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/array-typed-complex/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+
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Athan Reines
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
39+
<section class="release" id="v0.2.1">
40+
41+
## 0.2.1 (2024-02-25)
42+
43+
<section class="features">
44+
45+
### Features
46+
47+
- [`819d2e4`](https://github.com/stdlib-js/stdlib/commit/819d2e407146d4dcc17f8bab53b591b3d573f8a1) - add data type maps and replace use of overloads [(#1317)](https://github.com/stdlib-js/stdlib/pull/1317)
48+
49+
</section>
50+
51+
<!-- /.features -->
52+
53+
<section class="commits">
54+
55+
### Commits
56+
57+
<details>
58+
59+
- [`819d2e4`](https://github.com/stdlib-js/stdlib/commit/819d2e407146d4dcc17f8bab53b591b3d573f8a1) - **feat:** add data type maps and replace use of overloads [(#1317)](https://github.com/stdlib-js/stdlib/pull/1317) _(by Philipp Burckhardt, Athan Reines)_
60+
61+
</details>
62+
63+
</section>
64+
65+
<!-- /.commits -->
66+
67+
<section class="contributors">
68+
69+
### Contributors
70+
71+
A total of 2 people contributed to this release. Thank you to the following contributors:
72+
73+
- Athan Reines
74+
- Philipp Burckhardt
75+
76+
</section>
77+
78+
<!-- /.contributors -->
79+
80+
</section>
81+
82+
<!-- /.release -->
83+
84+
<section class="release" id="v0.2.0">
85+
86+
## 0.2.0 (2024-02-14)
87+
88+
<section class="features">
89+
90+
### Features
91+
92+
- [`e25b23b`](https://github.com/stdlib-js/stdlib/commit/e25b23b917ee6e387722db7192d22e4a70222da0) - rename type definitions for array and ndarray data types
93+
94+
</section>
95+
96+
<!-- /.features -->
97+
98+
<section class="breaking-changes">
99+
100+
### BREAKING CHANGES
101+
102+
- [`e25b23b`](https://github.com/stdlib-js/stdlib/commit/e25b23b917ee6e387722db7192d22e4a70222da0): rename type definitions for array and ndarray data types
103+
- [`e25b23b`](https://github.com/stdlib-js/stdlib/commit/e25b23b917ee6e387722db7192d22e4a70222da0): rename type definitions for array and ndarray data types
104+
105+
- In order to migrate, users should update their implementations to
106+
use the latest naming conventions. The affected type definitions
107+
are aliases for individual data type strings, so their should be
108+
no behavioral changes.
109+
110+
</section>
111+
112+
<!-- /.breaking-changes -->
113+
114+
<section class="commits">
115+
116+
### Commits
117+
118+
<details>
119+
120+
- [`e50f36e`](https://github.com/stdlib-js/stdlib/commit/e50f36e4abc083a8bb70abf68727f4462331e007) - **refactor:** query default dtype _(by Athan Reines)_
121+
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
122+
- [`e25b23b`](https://github.com/stdlib-js/stdlib/commit/e25b23b917ee6e387722db7192d22e4a70222da0) - **feat:** rename type definitions for array and ndarray data types _(by Athan Reines)_
123+
- [`739e562`](https://github.com/stdlib-js/stdlib/commit/739e5627234ca4ae9198f384063a4a3201c6c407) - **build:** replace tslint directive with eslint equivalent _(by Philipp Burckhardt)_
124+
- [`e3fc2d4`](https://github.com/stdlib-js/stdlib/commit/e3fc2d48bf55690a3ead6cc37eed3472f34561c0) - **docs:** update links _(by Athan Reines)_
125+
- [`df3c9b3`](https://github.com/stdlib-js/stdlib/commit/df3c9b368d8a3dd7dd38f8768deb53c2a780c055) - **build:** remove tslint directives _(by Philipp Burckhardt)_
126+
127+
</details>
128+
129+
</section>
130+
131+
<!-- /.commits -->
132+
133+
<section class="contributors">
134+
135+
### Contributors
136+
137+
A total of 2 people contributed to this release. Thank you to the following contributors:
138+
139+
- Athan Reines
140+
- Philipp Burckhardt
141+
142+
</section>
143+
144+
<!-- /.contributors -->
145+
146+
</section>
147+
148+
<!-- /.release -->
149+
150+
<section class="release" id="v0.1.0">
151+
152+
## 0.1.0 (2023-09-24)
153+
154+
<section class="features">
155+
156+
### Features
157+
158+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - update minimum TypeScript version
159+
160+
</section>
161+
162+
<!-- /.features -->
163+
164+
<section class="breaking-changes">
165+
166+
### BREAKING CHANGES
167+
168+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version
169+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version to 4.1
170+
171+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
172+
173+
</section>
174+
175+
<!-- /.breaking-changes -->
176+
177+
<section class="commits">
178+
179+
### Commits
180+
181+
<details>
182+
183+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
184+
185+
</details>
186+
187+
</section>
188+
189+
<!-- /.commits -->
190+
191+
<section class="contributors">
192+
193+
### Contributors
194+
195+
A total of 1 person contributed to this release. Thank you to this contributor:
196+
197+
- Philipp Burckhardt
198+
199+
</section>
200+
201+
<!-- /.contributors -->
202+
203+
</section>
204+
205+
<!-- /.release -->
206+
207+
<section class="release" id="v0.0.1">
208+
209+
## 0.0.1 (2022-02-16)
210+
211+
No changes reported for this release.
212+
213+
</section>
214+
215+
<!-- /.release -->
216+

CONTRIBUTORS

Lines changed: 3 additions & 1 deletion
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>
@@ -63,6 +64,7 @@ Pushpendra Chandravanshi <pushpendrachandravanshi4@gmail.com>
6364
Raunak Kumar Gupta <raunakmodanwal321@gmail.com>
6465
Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
6566
Ricky Reusser <rsreusser@gmail.com>
67+
Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
6668
Robert Gislason <gztown2216@yahoo.com>
6769
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
6870
Rutam <138517416+performant23@users.noreply.github.com>
@@ -75,7 +77,7 @@ Shraddheya Shendre <shendreshraddheya@gmail.com>
7577
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
7678
Shubham Mishra <shubh622005@gmail.com>
7779
Sivam Das <100067002+Sivam2313@users.noreply.github.com>
78-
Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
80+
Snehil Shah <snehilshah.989@gmail.com>
7981
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
8082
Spandan Barve <contact@marsian.dev>
8183
Stephannie Jiménez Gacha <steff456@hotmail.com>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
274274
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-typed-complex.svg
275275
[npm-url]: https://npmjs.org/package/@stdlib/array-typed-complex
276276

277-
[test-image]: https://github.com/stdlib-js/array-typed-complex/actions/workflows/test.yml/badge.svg?branch=main
278-
[test-url]: https://github.com/stdlib-js/array-typed-complex/actions/workflows/test.yml?query=branch:main
277+
[test-image]: https://github.com/stdlib-js/array-typed-complex/actions/workflows/test.yml/badge.svg?branch=v0.2.2
278+
[test-url]: https://github.com/stdlib-js/array-typed-complex/actions/workflows/test.yml?query=branch:v0.2.2
279279

280280
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-typed-complex/main.svg
281281
[coverage-url]: https://codecov.io/github/stdlib-js/array-typed-complex?branch=main

dist/index.js

Lines changed: 18 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)