You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .editorconfig
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,6 @@ indent_style = tab
86
86
[*.{f,f.txt}]
87
87
indent_style = space
88
88
indent_size = 2
89
-
insert_final_newline = false
90
89
91
90
# Set properties for shell files:
92
91
[*.{sh,sh.txt}]
@@ -121,7 +120,7 @@ indent_style = tab
121
120
[*.{md,md.txt}]
122
121
indent_style = space
123
122
indent_size = 4
124
-
trim_trailing_whitespace = false
123
+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
-[`f766a56`](https://github.com/stdlib-js/stdlib/commit/f766a563e112098dc229991c0eedb5f5b7417811) - **feat:** add boolean dtype support to `ndarray/from-scalar`[(#2589)](https://github.com/stdlib-js/stdlib/pull/2589)_(by Jaysukh Makvana, Athan Reines)_
26
30
-[`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
27
31
@@ -52,11 +56,88 @@ A total of 2 people contributed to this release. Thank you to the following cont
52
56
53
57
## 0.2.1 (2024-02-25)
54
58
59
+
No changes reported for this release.
60
+
61
+
</section>
62
+
63
+
<!-- /.release -->
64
+
65
+
<sectionclass="release"id="v0.2.0">
66
+
67
+
## 0.2.0 (2024-02-15)
68
+
55
69
<sectionclass="features">
56
70
57
71
### Features
58
72
59
73
-[`9e08caf`](https://github.com/stdlib-js/stdlib/commit/9e08caf0e897040e9b82ff104cb5a09d6b03465e) - return a `complex64` dtype ndarray if provided a Complex64 scalar
74
+
75
+
</section>
76
+
77
+
<!-- /.features -->
78
+
79
+
<sectionclass="breaking-changes">
80
+
81
+
### BREAKING CHANGES
82
+
83
+
-[`9e08caf`](https://github.com/stdlib-js/stdlib/commit/9e08caf0e897040e9b82ff104cb5a09d6b03465e): return same dtype when provided a complex number instance
84
+
85
+
- To migrate, users relying on the previous behavior where anything
86
+
complex-like resulted in a `complex128` ndarray should explicitly
87
+
set the output dtype to 'complex128'. By default, the function will
88
+
return an ndarray having the same dtype as a provided complex number
89
+
instance. When a user wants to explicitly upcast a Complex64 scalar,
90
+
the user can explicitly set the `dtype` option. The previous default
91
+
behavior is undesirable, as we disregarded the explicit type info
92
+
of a provided complex number scalar.
93
+
94
+
</section>
95
+
96
+
<!-- /.breaking-changes -->
97
+
98
+
<sectionclass="commits">
99
+
100
+
### Commits
101
+
102
+
<details>
103
+
104
+
-[`9e08caf`](https://github.com/stdlib-js/stdlib/commit/9e08caf0e897040e9b82ff104cb5a09d6b03465e) - **feat:** return a `complex64` dtype ndarray if provided a Complex64 scalar _(by Athan Reines)_
-[`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
-[`bf2cf8b`](https://github.com/stdlib-js/stdlib/commit/bf2cf8b0424e608a4e3abb6d18a8b44d790aa99c) - **build:** remove tslint directives _(by Philipp Burckhardt)_
109
+
110
+
</details>
111
+
112
+
</section>
113
+
114
+
<!-- /.commits -->
115
+
116
+
<sectionclass="contributors">
117
+
118
+
### Contributors
119
+
120
+
A total of 2 people contributed to this release. Thank you to the following contributors:
121
+
122
+
- Athan Reines
123
+
- Philipp Burckhardt
124
+
125
+
</section>
126
+
127
+
<!-- /.contributors -->
128
+
129
+
</section>
130
+
131
+
<!-- /.release -->
132
+
133
+
<sectionclass="release"id="v0.1.0">
134
+
135
+
## 0.1.0 (2023-09-24)
136
+
137
+
<sectionclass="features">
138
+
139
+
### Features
140
+
60
141
-[`7ae5741`](https://github.com/stdlib-js/stdlib/commit/7ae574143c9716c82cea6cbf839a20b70a9cdfe0) - update minimum TypeScript version
61
142
-[`f07f1ce`](https://github.com/stdlib-js/stdlib/commit/f07f1cedbfa64e81f21fcea8bb4e7ccbc67bde35) - add ndarray option support to `ndarray/from-scalar`
62
143
@@ -78,28 +159,14 @@ A total of 2 people contributed to this release. Thank you to the following cont
78
159
79
160
### BREAKING CHANGES
80
161
81
-
-[`9e08caf`](https://github.com/stdlib-js/stdlib/commit/9e08caf0e897040e9b82ff104cb5a09d6b03465e): return a `complex64` dtype ndarray if provided a Complex64 scalar
82
-
-[`9e08caf`](https://github.com/stdlib-js/stdlib/commit/9e08caf0e897040e9b82ff104cb5a09d6b03465e): return same dtype when provided a complex number instance
83
-
84
-
- To migrate, users relying on the previous behavior where anything
85
-
complex-like resulted in a `complex128` ndarray should explicitly
86
-
set the output dtype to 'complex128'. By default, the function will
87
-
return an ndarray having the same dtype as a provided complex number
88
-
instance. When a user wants to explicitly upcast a Complex64 scalar,
89
-
the user can explicitly set the `dtype` option. The previous default
90
-
behavior is undesirable, as we disregarded the explicit type info
91
-
of a provided complex number scalar.
92
-
93
-
-[`7ae5741`](https://github.com/stdlib-js/stdlib/commit/7ae574143c9716c82cea6cbf839a20b70a9cdfe0): update minimum TypeScript version
94
-
-[`7ae5741`](https://github.com/stdlib-js/stdlib/commit/7ae574143c9716c82cea6cbf839a20b70a9cdfe0): update minimum TypeScript version to 4.1
162
+
-[`7ae5741`](https://github.com/stdlib-js/stdlib/commit/7ae574143c9716c82cea6cbf839a20b70a9cdfe0): update minimum TypeScript version to 4.1
95
163
96
164
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
97
165
98
-
-[`f07f1ce`](https://github.com/stdlib-js/stdlib/commit/f07f1cedbfa64e81f21fcea8bb4e7ccbc67bde35): add ndarray option support to `ndarray/from-scalar`
99
-
-[`f07f1ce`](https://github.com/stdlib-js/stdlib/commit/f07f1cedbfa64e81f21fcea8bb4e7ccbc67bde35): `dtype` argument replaced by `options` argument
166
+
-[`f07f1ce`](https://github.com/stdlib-js/stdlib/commit/f07f1cedbfa64e81f21fcea8bb4e7ccbc67bde35): `dtype` argument replaced by `options` argument
100
167
101
168
- In order to migrate to the new API, users should replace any
102
-
`dtype` argument usage with an equivalent `options` argument.
169
+
`dtype` argument usage with an equivalent `options` argument.
103
170
104
171
</section>
105
172
@@ -111,11 +178,6 @@ A total of 2 people contributed to this release. Thank you to the following cont
111
178
112
179
<details>
113
180
114
-
-[`9e08caf`](https://github.com/stdlib-js/stdlib/commit/9e08caf0e897040e9b82ff104cb5a09d6b03465e) - **feat:** return a `complex64` dtype ndarray if provided a Complex64 scalar _(by Athan Reines)_
-[`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
-[`bf2cf8b`](https://github.com/stdlib-js/stdlib/commit/bf2cf8b0424e608a4e3abb6d18a8b44d790aa99c) - **build:** remove tslint directives _(by Philipp Burckhardt)_
119
181
-[`7ae5741`](https://github.com/stdlib-js/stdlib/commit/7ae574143c9716c82cea6cbf839a20b70a9cdfe0) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
120
182
-[`32a2827`](https://github.com/stdlib-js/stdlib/commit/32a282799ffd272d2a0554e81755a14923564e51) - **fix:** update import paths for complex type defs _(by Athan Reines)_
121
183
-[`9dbf98e`](https://github.com/stdlib-js/stdlib/commit/9dbf98ecffc9e72508b2db6d5f4af574a48033be) - **refactor:** use ndarray defaults _(by Athan Reines)_
@@ -145,3 +207,13 @@ A total of 2 people contributed to this release. Thank you to the following cont
0 commit comments