Skip to content

Commit 48224f5

Browse files
committed
Auto-generated commit
1 parent 2bd9c0c commit 48224f5

File tree

4 files changed

+244
-13
lines changed

4 files changed

+244
-13
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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}"

CHANGELOG.md

Lines changed: 204 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,207 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/array-complex128/releases) for the changelog.
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2024-06-05)
8+
9+
<section class="features">
10+
11+
### Features
12+
13+
- [`9ee6b4f`](https://github.com/stdlib-js/stdlib/commit/9ee6b4f04e1e0784748c94a74cc73212d51400a9) - add `toSorted` method to `array/complex128` [(#2265)](https://github.com/stdlib-js/stdlib/pull/2265)
14+
- [`8b4cdfa`](https://github.com/stdlib-js/stdlib/commit/8b4cdfa19e97509173358dae7f40db036fb7c4c4) - add `sort` method to `array/complex128` [(#2262)](https://github.com/stdlib-js/stdlib/pull/2262)
15+
- [`9dfd026`](https://github.com/stdlib-js/stdlib/commit/9dfd026f52d03e54adb878cdf4dddbef591a1e8d) - add `toLocaleString` method to `array/complex128` [(#2252)](https://github.com/stdlib-js/stdlib/pull/2252)
16+
- [`b4b1d14`](https://github.com/stdlib-js/stdlib/commit/b4b1d14255820c1071568f1aa144a986ab6f0566) - add `values` method to `array/complex128` [(#2216)](https://github.com/stdlib-js/stdlib/pull/2216)
17+
- [`14b3434`](https://github.com/stdlib-js/stdlib/commit/14b34348f53eeb0c21e8e69249192455179f06b6) - add `keys` method to `array/complex128` [(#2174)](https://github.com/stdlib-js/stdlib/pull/2174)
18+
- [`4e84566`](https://github.com/stdlib-js/stdlib/commit/4e845661773892e654689ceb0c2dd3e1e2c3244c) - add `reduceRight` method to `array/complex128` [(##1406)](#1406)
19+
20+
</section>
21+
22+
<!-- /.features -->
23+
24+
<section class="bug-fixes">
25+
26+
### Bug Fixes
27+
28+
- [`f53180b`](https://github.com/stdlib-js/stdlib/commit/f53180b3c431857d7c918319da97bd8e3abcb216) - add missing parameter
29+
30+
</section>
31+
32+
<!-- /.bug-fixes -->
33+
34+
<section class="commits">
35+
36+
### Commits
37+
38+
<details>
39+
40+
- [`f53180b`](https://github.com/stdlib-js/stdlib/commit/f53180b3c431857d7c918319da97bd8e3abcb216) - **fix:** add missing parameter _(by Athan Reines)_
41+
- [`1cc1a57`](https://github.com/stdlib-js/stdlib/commit/1cc1a5727ea8a024c597d7c8bc724f027511da78) - **docs:** add `repl.txt` to `array/complex128` [(#2280)](https://github.com/stdlib-js/stdlib/pull/2280) _(by Jaysukh Makvana, Athan Reines)_
42+
- [`3a3b1e0`](https://github.com/stdlib-js/stdlib/commit/3a3b1e08f73a54c5ee46d73045805aee0bb1196d) - **docs:** update package URLs [(##2269)](#2269) _(by stdlib-bot)_
43+
- [`8089b88`](https://github.com/stdlib-js/stdlib/commit/8089b886a4d7d89f15abb068b1021d93f9c4f64e) - **docs:** update paths _(by Athan Reines)_
44+
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
45+
- [`ccbf26a`](https://github.com/stdlib-js/stdlib/commit/ccbf26a09b13fc483b7f1b55718b32f5af61b800) - **test:** fix descriptions _(by Athan Reines)_
46+
- [`2dd57d7`](https://github.com/stdlib-js/stdlib/commit/2dd57d7df1a34c9c9bf84bf517cedd7bb234ba7c) - **docs:** add notes _(by Athan Reines)_
47+
- [`9ee6b4f`](https://github.com/stdlib-js/stdlib/commit/9ee6b4f04e1e0784748c94a74cc73212d51400a9) - **feat:** add `toSorted` method to `array/complex128` [(#2265)](https://github.com/stdlib-js/stdlib/pull/2265) _(by Jaysukh Makvana)_
48+
- [`8b4cdfa`](https://github.com/stdlib-js/stdlib/commit/8b4cdfa19e97509173358dae7f40db036fb7c4c4) - **feat:** add `sort` method to `array/complex128` [(#2262)](https://github.com/stdlib-js/stdlib/pull/2262) _(by Jaysukh Makvana)_
49+
- [`9dfd026`](https://github.com/stdlib-js/stdlib/commit/9dfd026f52d03e54adb878cdf4dddbef591a1e8d) - **feat:** add `toLocaleString` method to `array/complex128` [(#2252)](https://github.com/stdlib-js/stdlib/pull/2252) _(by Jaysukh Makvana)_
50+
- [`b4b1d14`](https://github.com/stdlib-js/stdlib/commit/b4b1d14255820c1071568f1aa144a986ab6f0566) - **feat:** add `values` method to `array/complex128` [(#2216)](https://github.com/stdlib-js/stdlib/pull/2216) _(by Jaysukh Makvana)_
51+
- [`14b3434`](https://github.com/stdlib-js/stdlib/commit/14b34348f53eeb0c21e8e69249192455179f06b6) - **feat:** add `keys` method to `array/complex128` [(#2174)](https://github.com/stdlib-js/stdlib/pull/2174) _(by Jaysukh Makvana)_
52+
- [`89ee510`](https://github.com/stdlib-js/stdlib/commit/89ee510dafb04f0ed45610580d9349df02b9f7e1) - **docs:** update description _(by Athan Reines)_
53+
- [`4e84566`](https://github.com/stdlib-js/stdlib/commit/4e845661773892e654689ceb0c2dd3e1e2c3244c) - **feat:** add `reduceRight` method to `array/complex128` [(##1406)](#1406) _(by Jaysukh Makvana, stdlib-bot, Philipp Burckhardt)_
54+
55+
</details>
56+
57+
</section>
58+
59+
<!-- /.commits -->
60+
61+
<section class="contributors">
62+
63+
### Contributors
64+
65+
A total of 4 people contributed to this release. Thank you to the following contributors:
66+
67+
- Athan Reines
68+
- Jaysukh Makvana
69+
- Philipp Burckhardt
70+
- stdlib-bot
71+
72+
</section>
73+
74+
<!-- /.contributors -->
75+
76+
</section>
77+
78+
<!-- /.release -->
79+
80+
<section class="release" id="v0.2.1">
81+
82+
## 0.2.1 (2024-02-25)
83+
84+
<section class="features">
85+
86+
### Features
87+
88+
- [`0848cd9`](https://github.com/stdlib-js/stdlib/commit/0848cd91a848223d481b5d054ec4beecf7bdd9c9) - add `reduce` method to `array/complex128` [(#1367)](https://github.com/stdlib-js/stdlib/pull/1367)
89+
- [`4bfbed8`](https://github.com/stdlib-js/stdlib/commit/4bfbed8772e59800e03b987db2ad240abd097fab) - add `slice` method to `array/complex128` [(#1355)](https://github.com/stdlib-js/stdlib/pull/1355)
90+
- [`6eaf0fd`](https://github.com/stdlib-js/stdlib/commit/6eaf0fd5ad69ab80adc9df5b47c934b056a4e073) - add `toReversed` method to `array/complex128` [(#1285)](https://github.com/stdlib-js/stdlib/pull/1285)
91+
- [`4b67a42`](https://github.com/stdlib-js/stdlib/commit/4b67a4282db2f1ab979d2df37f693285dca390da) - add reverse method to array/complex128 [(#1262)](https://github.com/stdlib-js/stdlib/pull/1262)
92+
- [`04a648a`](https://github.com/stdlib-js/stdlib/commit/04a648ad097b4103cac51bb7948d1be7631fbd60) - add `with` method to `array/complex128` [(#1253)](https://github.com/stdlib-js/stdlib/pull/1253)
93+
- [`836d0f2`](https://github.com/stdlib-js/stdlib/commit/836d0f29d27fb9369c5e5ea60d084bd356151a64) - add `join` method to `array/complex128` [(#1252)](https://github.com/stdlib-js/stdlib/pull/1252)
94+
- [`d7809bc`](https://github.com/stdlib-js/stdlib/commit/d7809bc57b551778b57d1ae6e93d953bb06bd82e) - add `fill` method to `array/complex128` [(#1250)](https://github.com/stdlib-js/stdlib/pull/1250)
95+
- [`e02dc62`](https://github.com/stdlib-js/stdlib/commit/e02dc62a0712e7bb061093728d09547738579404) - add `toString` method to `array/complex128` [(#1244)](https://github.com/stdlib-js/stdlib/pull/1244)
96+
- [`6d8ceba`](https://github.com/stdlib-js/stdlib/commit/6d8cebaa8ed2791a6634e10ae5b3fb02f5340ab9) - add `subarray` method to `array/complex128` [(#1240)](https://github.com/stdlib-js/stdlib/pull/1240)
97+
- [`177b31a`](https://github.com/stdlib-js/stdlib/commit/177b31ae5764cd8f4487d26f816e610bcac42d78) - add `forEach` method to `array/complex128` [(#1237)](https://github.com/stdlib-js/stdlib/pull/1237)
98+
- [`08996f2`](https://github.com/stdlib-js/stdlib/commit/08996f219dbcead407db9d9d5cd98a98cdb2923c) - add `map` method to `array/complex128` [(#1234)](https://github.com/stdlib-js/stdlib/pull/1234)
99+
- [`e0e1896`](https://github.com/stdlib-js/stdlib/commit/e0e18965d68d5eaf21892033a87efe1755b77be5) - add `includes` method to `array/complex128` [(#1232)](https://github.com/stdlib-js/stdlib/pull/1232)
100+
- [`26c27af`](https://github.com/stdlib-js/stdlib/commit/26c27afc8320b656632942b21fdca1e65c843a4c) - add `lastIndexOf` method to `array/complex128` [(#1229)](https://github.com/stdlib-js/stdlib/pull/1229)
101+
- [`a170198`](https://github.com/stdlib-js/stdlib/commit/a1701983277c84238648e2aa5c0aa84dde12b0b5) - add `indexOf` method to `array/complex128` [(#1227)](https://github.com/stdlib-js/stdlib/pull/1227)
102+
- [`50327dc`](https://github.com/stdlib-js/stdlib/commit/50327dc0c184b0511cb59db8480d2cc8203d56fe) - add `filter` method to `array/complex128` [(#1225)](https://github.com/stdlib-js/stdlib/pull/1225)
103+
- [`fc39aa9`](https://github.com/stdlib-js/stdlib/commit/fc39aa930d8eb3101df2ab1c03544f40329d482b) - add `findLastIndex` method to `array/complex128` [(#1224)](https://github.com/stdlib-js/stdlib/pull/1224)
104+
- [`2472467`](https://github.com/stdlib-js/stdlib/commit/24724677a8e5c4a8a9946a84ab1c69811bf971ae) - improve type specificity in static `from` method
105+
- [`afc48dc`](https://github.com/stdlib-js/stdlib/commit/afc48dc0a91524ab1c440732c8735a3086ec58b9) - add `findIndex` method to `array/complex128` [(#1222)](https://github.com/stdlib-js/stdlib/pull/1222)
106+
- [`5acc9ed`](https://github.com/stdlib-js/stdlib/commit/5acc9eda0085c0f3d7fa5e53e98fedc8393acfa0) - add `findLast` method to `array/complex128` [(#1219)](https://github.com/stdlib-js/stdlib/pull/1219)
107+
- [`e7a7584`](https://github.com/stdlib-js/stdlib/commit/e7a758470b16d9322666d769cda40b68b0436146) - add `find` method to `array/complex128` [(#1218)](https://github.com/stdlib-js/stdlib/pull/1218)
108+
- [`151d27d`](https://github.com/stdlib-js/stdlib/commit/151d27d5df43ea75853ec73e5282a0b3d82f6fbb) - add `some` method to `array/complex128` [(#1212)](https://github.com/stdlib-js/stdlib/pull/1212)
109+
- [`814fb4c`](https://github.com/stdlib-js/stdlib/commit/814fb4c4fa76500940e6db9fa34c84fb9739f933) - add `every` method to `array/complex128` [(#1207)](https://github.com/stdlib-js/stdlib/pull/1207)
110+
- [`b597754`](https://github.com/stdlib-js/stdlib/commit/b59775459f425f6f8a47133c8b89db2da376a45b) - add `at` method to `array/complex128` [(#1202)](https://github.com/stdlib-js/stdlib/pull/1202)
111+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - update minimum TypeScript version
112+
113+
</section>
114+
115+
<!-- /.features -->
116+
117+
<section class="bug-fixes">
118+
119+
### Bug Fixes
120+
121+
- [`0c9081b`](https://github.com/stdlib-js/stdlib/commit/0c9081bb9ec0fc97fe11d11db373830892a82c34) - ensure correct use of generics
122+
- [`32a2827`](https://github.com/stdlib-js/stdlib/commit/32a282799ffd272d2a0554e81755a14923564e51) - update import paths for complex type defs
123+
124+
</section>
125+
126+
<!-- /.bug-fixes -->
127+
128+
<section class="breaking-changes">
129+
130+
### BREAKING CHANGES
131+
132+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version
133+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version to 4.1
134+
135+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
136+
137+
</section>
138+
139+
<!-- /.breaking-changes -->
140+
141+
<section class="commits">
142+
143+
### Commits
144+
145+
<details>
146+
147+
- [`5daf468`](https://github.com/stdlib-js/stdlib/commit/5daf468cf419bc847ef14d0f56a80936fd175c9c) - **docs:** update related packages sections [(#1380)](https://github.com/stdlib-js/stdlib/pull/1380) _(by stdlib-bot)_
148+
- [`0848cd9`](https://github.com/stdlib-js/stdlib/commit/0848cd91a848223d481b5d054ec4beecf7bdd9c9) - **feat:** add `reduce` method to `array/complex128` [(#1367)](https://github.com/stdlib-js/stdlib/pull/1367) _(by Jaysukh Makvana, Athan Reines)_
149+
- [`4bfbed8`](https://github.com/stdlib-js/stdlib/commit/4bfbed8772e59800e03b987db2ad240abd097fab) - **feat:** add `slice` method to `array/complex128` [(#1355)](https://github.com/stdlib-js/stdlib/pull/1355) _(by Jaysukh Makvana)_
150+
- [`6eaf0fd`](https://github.com/stdlib-js/stdlib/commit/6eaf0fd5ad69ab80adc9df5b47c934b056a4e073) - **feat:** add `toReversed` method to `array/complex128` [(#1285)](https://github.com/stdlib-js/stdlib/pull/1285) _(by Jaysukh Makvana)_
151+
- [`4331e1f`](https://github.com/stdlib-js/stdlib/commit/4331e1f2cd0a967e7ac811f5b5c8d796486c5cea) - **refactor:** use base assertion utility _(by Athan Reines)_
152+
- [`d41b87d`](https://github.com/stdlib-js/stdlib/commit/d41b87d71bb2fa7fd318fce3ec93875a65bb8f95) - **refactor:** use base assertion utility _(by Athan Reines)_
153+
- [`4b67a42`](https://github.com/stdlib-js/stdlib/commit/4b67a4282db2f1ab979d2df37f693285dca390da) - **feat:** add reverse method to array/complex128 [(#1262)](https://github.com/stdlib-js/stdlib/pull/1262) _(by Jaysukh Makvana, Athan Reines)_
154+
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
155+
- [`04a648a`](https://github.com/stdlib-js/stdlib/commit/04a648ad097b4103cac51bb7948d1be7631fbd60) - **feat:** add `with` method to `array/complex128` [(#1253)](https://github.com/stdlib-js/stdlib/pull/1253) _(by Jaysukh Makvana)_
156+
- [`836d0f2`](https://github.com/stdlib-js/stdlib/commit/836d0f29d27fb9369c5e5ea60d084bd356151a64) - **feat:** add `join` method to `array/complex128` [(#1252)](https://github.com/stdlib-js/stdlib/pull/1252) _(by Jaysukh Makvana)_
157+
- [`d7809bc`](https://github.com/stdlib-js/stdlib/commit/d7809bc57b551778b57d1ae6e93d953bb06bd82e) - **feat:** add `fill` method to `array/complex128` [(#1250)](https://github.com/stdlib-js/stdlib/pull/1250) _(by Jaysukh Makvana, Athan Reines)_
158+
- [`dfd8645`](https://github.com/stdlib-js/stdlib/commit/dfd8645a833db540069bc759d87fc74cb549ab44) - **docs:** fix parameter type _(by Athan Reines)_
159+
- [`e02dc62`](https://github.com/stdlib-js/stdlib/commit/e02dc62a0712e7bb061093728d09547738579404) - **feat:** add `toString` method to `array/complex128` [(#1244)](https://github.com/stdlib-js/stdlib/pull/1244) _(by Jaysukh Makvana)_
160+
- [`6d8ceba`](https://github.com/stdlib-js/stdlib/commit/6d8cebaa8ed2791a6634e10ae5b3fb02f5340ab9) - **feat:** add `subarray` method to `array/complex128` [(#1240)](https://github.com/stdlib-js/stdlib/pull/1240) _(by Jaysukh Makvana, Athan Reines)_
161+
- [`177b31a`](https://github.com/stdlib-js/stdlib/commit/177b31ae5764cd8f4487d26f816e610bcac42d78) - **feat:** add `forEach` method to `array/complex128` [(#1237)](https://github.com/stdlib-js/stdlib/pull/1237) _(by Jaysukh Makvana)_
162+
- [`08996f2`](https://github.com/stdlib-js/stdlib/commit/08996f219dbcead407db9d9d5cd98a98cdb2923c) - **feat:** add `map` method to `array/complex128` [(#1234)](https://github.com/stdlib-js/stdlib/pull/1234) _(by Jaysukh Makvana, Athan Reines)_
163+
- [`e0e1896`](https://github.com/stdlib-js/stdlib/commit/e0e18965d68d5eaf21892033a87efe1755b77be5) - **feat:** add `includes` method to `array/complex128` [(#1232)](https://github.com/stdlib-js/stdlib/pull/1232) _(by Jaysukh Makvana)_
164+
- [`26c27af`](https://github.com/stdlib-js/stdlib/commit/26c27afc8320b656632942b21fdca1e65c843a4c) - **feat:** add `lastIndexOf` method to `array/complex128` [(#1229)](https://github.com/stdlib-js/stdlib/pull/1229) _(by Jaysukh Makvana, Athan Reines)_
165+
- [`a170198`](https://github.com/stdlib-js/stdlib/commit/a1701983277c84238648e2aa5c0aa84dde12b0b5) - **feat:** add `indexOf` method to `array/complex128` [(#1227)](https://github.com/stdlib-js/stdlib/pull/1227) _(by Jaysukh Makvana, Athan Reines)_
166+
- [`50327dc`](https://github.com/stdlib-js/stdlib/commit/50327dc0c184b0511cb59db8480d2cc8203d56fe) - **feat:** add `filter` method to `array/complex128` [(#1225)](https://github.com/stdlib-js/stdlib/pull/1225) _(by Jaysukh Makvana)_
167+
- [`fc39aa9`](https://github.com/stdlib-js/stdlib/commit/fc39aa930d8eb3101df2ab1c03544f40329d482b) - **feat:** add `findLastIndex` method to `array/complex128` [(#1224)](https://github.com/stdlib-js/stdlib/pull/1224) _(by Jaysukh Makvana)_
168+
- [`2472467`](https://github.com/stdlib-js/stdlib/commit/24724677a8e5c4a8a9946a84ab1c69811bf971ae) - **feat:** improve type specificity in static `from` method _(by Athan Reines)_
169+
- [`0c9081b`](https://github.com/stdlib-js/stdlib/commit/0c9081bb9ec0fc97fe11d11db373830892a82c34) - **fix:** ensure correct use of generics _(by Athan Reines)_
170+
- [`afc48dc`](https://github.com/stdlib-js/stdlib/commit/afc48dc0a91524ab1c440732c8735a3086ec58b9) - **feat:** add `findIndex` method to `array/complex128` [(#1222)](https://github.com/stdlib-js/stdlib/pull/1222) _(by Jaysukh Makvana, Athan Reines)_
171+
- [`4ef9ce3`](https://github.com/stdlib-js/stdlib/commit/4ef9ce3c030b0cb7f26658de0e231a6dd8f302a1) - **test:** fix test description _(by Athan Reines)_
172+
- [`5acc9ed`](https://github.com/stdlib-js/stdlib/commit/5acc9eda0085c0f3d7fa5e53e98fedc8393acfa0) - **feat:** add `findLast` method to `array/complex128` [(#1219)](https://github.com/stdlib-js/stdlib/pull/1219) _(by Jaysukh Makvana, Athan Reines)_
173+
- [`e7a7584`](https://github.com/stdlib-js/stdlib/commit/e7a758470b16d9322666d769cda40b68b0436146) - **feat:** add `find` method to `array/complex128` [(#1218)](https://github.com/stdlib-js/stdlib/pull/1218) _(by Jaysukh Makvana, Athan Reines)_
174+
- [`151d27d`](https://github.com/stdlib-js/stdlib/commit/151d27d5df43ea75853ec73e5282a0b3d82f6fbb) - **feat:** add `some` method to `array/complex128` [(#1212)](https://github.com/stdlib-js/stdlib/pull/1212) _(by Jaysukh Makvana, Athan Reines)_
175+
- [`205ae67`](https://github.com/stdlib-js/stdlib/commit/205ae67ef0260370043a1ce8c291fbc9f6b4e25e) - **chore:** update package meta data (#1209) _(by stdlib-bot, kgryte)_
176+
- [`814fb4c`](https://github.com/stdlib-js/stdlib/commit/814fb4c4fa76500940e6db9fa34c84fb9739f933) - **feat:** add `every` method to `array/complex128` [(#1207)](https://github.com/stdlib-js/stdlib/pull/1207) _(by Jaysukh Makvana, Athan Reines)_
177+
- [`b597754`](https://github.com/stdlib-js/stdlib/commit/b59775459f425f6f8a47133c8b89db2da376a45b) - **feat:** add `at` method to `array/complex128` [(#1202)](https://github.com/stdlib-js/stdlib/pull/1202) _(by Jaysukh Makvana, Athan Reines)_
178+
- [`b496b72`](https://github.com/stdlib-js/stdlib/commit/b496b72595355b5a794c940bd7f81ea5223b91bd) - **build:** replace tslint directive with eslint equivalent _(by Philipp Burckhardt)_
179+
- [`df3c9b3`](https://github.com/stdlib-js/stdlib/commit/df3c9b368d8a3dd7dd38f8768deb53c2a780c055) - **build:** remove tslint directives _(by Philipp Burckhardt)_
180+
- [`453dd85`](https://github.com/stdlib-js/stdlib/commit/453dd85b5dd186d2b4d458256fe84906e1503fe2) - **build:** remove tslint directives _(by Philipp Burckhardt)_
181+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
182+
- [`32a2827`](https://github.com/stdlib-js/stdlib/commit/32a282799ffd272d2a0554e81755a14923564e51) - **fix:** update import paths for complex type defs _(by Athan Reines)_
183+
184+
</details>
185+
186+
</section>
187+
188+
<!-- /.commits -->
189+
190+
<section class="contributors">
191+
192+
### Contributors
193+
194+
A total of 4 people contributed to this release. Thank you to the following contributors:
195+
196+
- Athan Reines
197+
- Jaysukh Makvana
198+
- Philipp Burckhardt
199+
- kgryte
200+
201+
</section>
202+
203+
<!-- /.contributors -->
204+
205+
</section>
206+
207+
<!-- /.release -->
208+

0 commit comments

Comments
 (0)