Skip to content

Commit ae983a0

Browse files
committed
Auto-generated commit
1 parent 55eb5df commit ae983a0

File tree

2 files changed

+139
-15
lines changed

2 files changed

+139
-15
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-08-01T03:35:21.183Z
1+
2024-08-03T18:48:13.766Z

CHANGELOG.md

Lines changed: 138 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,41 @@
22

33
> Package changelog.
44
5-
<section class="release" id="unreleased">
5+
<section class="release" id="v0.3.0">
6+
7+
## 0.3.0 (2024-07-28)
8+
9+
<section class="features">
10+
11+
### Features
12+
13+
- [`66dce03`](https://github.com/stdlib-js/stdlib/commit/66dce034698fdbd71248cad9c7d277ac97cdf0ae) - add boolean dtype support to `array/min-dtype` [(#2556)](https://github.com/stdlib-js/stdlib/pull/2556)
14+
15+
</section>
16+
17+
<!-- /.features -->
18+
19+
<section class="breaking-changes">
20+
21+
### BREAKING CHANGES
22+
23+
- [`66dce03`](https://github.com/stdlib-js/stdlib/commit/66dce034698fdbd71248cad9c7d277ac97cdf0ae): add boolean dtype support to `array/min-dtype`
24+
- [`66dce03`](https://github.com/stdlib-js/stdlib/commit/66dce034698fdbd71248cad9c7d277ac97cdf0ae): return \"bool\" when provided a boolean
25+
26+
- To migrate, users explicitly handle \"bool\" return values. If \"generic\" is still desired, users should consolidate accordingly.
627

7-
## Unreleased (2024-08-01)
28+
</section>
29+
30+
<!-- /.breaking-changes -->
831

932
<section class="commits">
1033

1134
### Commits
1235

1336
<details>
1437

15-
- [`22c4d29`](https://github.com/stdlib-js/stdlib/commit/22c4d29898e2b5bb4cb071a6b7f62536027eaf28) - **docs:** remove blank line _(by Athan Reines)_
38+
- [`66dce03`](https://github.com/stdlib-js/stdlib/commit/66dce034698fdbd71248cad9c7d277ac97cdf0ae) - **feat:** add boolean dtype support to `array/min-dtype` [(#2556)](https://github.com/stdlib-js/stdlib/pull/2556) _(by Jaysukh Makvana, Athan Reines)_
39+
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
1640

1741
</details>
1842

@@ -24,9 +48,10 @@
2448

2549
### Contributors
2650

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

2953
- Athan Reines
54+
- Jaysukh Makvana
3055

3156
</section>
3257

@@ -36,31 +61,71 @@ A total of 1 person contributed to this release. Thank you to this contributor:
3661

3762
<!-- /.release -->
3863

39-
<section class="release" id="v0.3.0">
64+
<section class="release" id="v0.2.1">
4065

41-
## 0.3.0 (2024-07-28)
66+
## 0.2.1 (2024-02-24)
4267

4368
No changes reported for this release.
4469

4570
</section>
4671

4772
<!-- /.release -->
4873

49-
<section class="release" id="v0.2.1">
74+
<section class="release" id="v0.2.0">
5075

51-
## 0.2.1 (2024-02-24)
76+
## 0.2.0 (2024-02-14)
5277

53-
No changes reported for this release.
78+
<section class="features">
79+
80+
### Features
81+
82+
- [`e25b23b`](https://github.com/stdlib-js/stdlib/commit/e25b23b917ee6e387722db7192d22e4a70222da0) - rename type definitions for array and ndarray data types
5483

5584
</section>
5685

57-
<!-- /.release -->
86+
<!-- /.features -->
5887

59-
<section class="release" id="v0.2.0">
88+
<section class="breaking-changes">
6089

61-
## 0.2.0 (2024-02-14)
90+
### BREAKING CHANGES
6291

63-
No changes reported for this release.
92+
- [`e25b23b`](https://github.com/stdlib-js/stdlib/commit/e25b23b917ee6e387722db7192d22e4a70222da0): rename type definitions for array and ndarray data types
93+
- [`e25b23b`](https://github.com/stdlib-js/stdlib/commit/e25b23b917ee6e387722db7192d22e4a70222da0): rename type definitions for array and ndarray data types
94+
95+
- In order to migrate, users should update their implementations to
96+
use the latest naming conventions. The affected type definitions
97+
are aliases for individual data type strings, so their should be
98+
no behavioral changes.
99+
100+
</section>
101+
102+
<!-- /.breaking-changes -->
103+
104+
<section class="commits">
105+
106+
### Commits
107+
108+
<details>
109+
110+
- [`e25b23b`](https://github.com/stdlib-js/stdlib/commit/e25b23b917ee6e387722db7192d22e4a70222da0) - **feat:** rename type definitions for array and ndarray data types _(by Athan Reines)_
111+
112+
</details>
113+
114+
</section>
115+
116+
<!-- /.commits -->
117+
118+
<section class="contributors">
119+
120+
### Contributors
121+
122+
A total of 1 person contributed to this release. Thank you to this contributor:
123+
124+
- Athan Reines
125+
126+
</section>
127+
128+
<!-- /.contributors -->
64129

65130
</section>
66131

@@ -70,7 +135,66 @@ No changes reported for this release.
70135

71136
## 0.1.0 (2023-09-23)
72137

73-
No changes reported for this release.
138+
<section class="features">
139+
140+
### Features
141+
142+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - update minimum TypeScript version
143+
144+
</section>
145+
146+
<!-- /.features -->
147+
148+
<section class="bug-fixes">
149+
150+
### Bug Fixes
151+
152+
- [`32a2827`](https://github.com/stdlib-js/stdlib/commit/32a282799ffd272d2a0554e81755a14923564e51) - update import paths for complex type defs
153+
154+
</section>
155+
156+
<!-- /.bug-fixes -->
157+
158+
<section class="breaking-changes">
159+
160+
### BREAKING CHANGES
161+
162+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version
163+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version to 4.1
164+
165+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
166+
167+
</section>
168+
169+
<!-- /.breaking-changes -->
170+
171+
<section class="commits">
172+
173+
### Commits
174+
175+
<details>
176+
177+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
178+
- [`32a2827`](https://github.com/stdlib-js/stdlib/commit/32a282799ffd272d2a0554e81755a14923564e51) - **fix:** update import paths for complex type defs _(by Athan Reines)_
179+
180+
</details>
181+
182+
</section>
183+
184+
<!-- /.commits -->
185+
186+
<section class="contributors">
187+
188+
### Contributors
189+
190+
A total of 2 people contributed to this release. Thank you to the following contributors:
191+
192+
- Athan Reines
193+
- Philipp Burckhardt
194+
195+
</section>
196+
197+
<!-- /.contributors -->
74198

75199
</section>
76200

0 commit comments

Comments
 (0)