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
-[`cf3f92e`](https://github.com/stdlib-js/stdlib/commit/cf3f92eddd20ec1a4106c8a34f7d7705a9a99dbc) - **fix:** update include paths _(by Athan Reines)_
28
+
-[`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
29
+
30
+
</details>
31
+
32
+
</section>
33
+
34
+
<!-- /.commits -->
35
+
36
+
<sectionclass="contributors">
37
+
38
+
### Contributors
39
+
40
+
A total of 1 person contributed to this release. Thank you to this contributor:
41
+
42
+
- Athan Reines
43
+
44
+
</section>
45
+
46
+
<!-- /.contributors -->
47
+
48
+
</section>
49
+
50
+
<!-- /.release -->
51
+
52
+
<sectionclass="release"id="v0.2.1">
53
+
54
+
## 0.2.1 (2024-02-22)
55
+
56
+
<sectionclass="features">
57
+
58
+
### Features
59
+
60
+
-[`9768c66`](https://github.com/stdlib-js/stdlib/commit/9768c662b6e255b70ba9fb0faa989ea1eea71f66) - update minimum TypeScript version
61
+
62
+
</section>
63
+
64
+
<!-- /.features -->
65
+
66
+
<sectionclass="bug-fixes">
67
+
68
+
### Bug Fixes
69
+
70
+
-[`32a2827`](https://github.com/stdlib-js/stdlib/commit/32a282799ffd272d2a0554e81755a14923564e51) - update import paths for complex type defs
71
+
72
+
</section>
73
+
74
+
<!-- /.bug-fixes -->
75
+
76
+
<sectionclass="breaking-changes">
77
+
78
+
### BREAKING CHANGES
79
+
80
+
-[`9768c66`](https://github.com/stdlib-js/stdlib/commit/9768c662b6e255b70ba9fb0faa989ea1eea71f66): update minimum TypeScript version
81
+
-[`9768c66`](https://github.com/stdlib-js/stdlib/commit/9768c662b6e255b70ba9fb0faa989ea1eea71f66): update minimum TypeScript version to 4.1
82
+
83
+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
84
+
85
+
</section>
86
+
87
+
<!-- /.breaking-changes -->
88
+
89
+
<sectionclass="commits">
90
+
91
+
### Commits
92
+
93
+
<details>
94
+
95
+
-[`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
-[`9768c66`](https://github.com/stdlib-js/stdlib/commit/9768c662b6e255b70ba9fb0faa989ea1eea71f66) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
98
+
-[`32a2827`](https://github.com/stdlib-js/stdlib/commit/32a282799ffd272d2a0554e81755a14923564e51) - **fix:** update import paths for complex type defs _(by Athan Reines)_
99
+
-[`07cc80b`](https://github.com/stdlib-js/stdlib/commit/07cc80b4aa930750251fc70c8b9afe72801da142) - **docs:** resolve C lint errors _(by Athan Reines)_
100
+
-[`28e1c84`](https://github.com/stdlib-js/stdlib/commit/28e1c84390d88044883c9ef940a12f38d66ea3ef) - **docs:** resolve C lint errors _(by Athan Reines)_
101
+
102
+
</details>
103
+
104
+
</section>
105
+
106
+
<!-- /.commits -->
107
+
108
+
<sectionclass="contributors">
109
+
110
+
### Contributors
111
+
112
+
A total of 2 people contributed to this release. Thank you to the following contributors:
Copy file name to clipboardexpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ var real = require( '@stdlib/complex-real' );
78
78
Returns the **real** component of a double-precision complex floating-point number.
79
79
80
80
```javascript
81
-
var Complex128 =require( '@stdlib/complex-float64' );
81
+
var Complex128 =require( '@stdlib/complex-float64-ctor' );
82
82
83
83
var z =newComplex128( 5.0, 3.0 );
84
84
var re =real( z );
@@ -106,7 +106,7 @@ var re = real( z );
106
106
<!-- eslint no-undef: "error" -->
107
107
108
108
```javascript
109
-
var Complex128 =require( '@stdlib/complex-float64' );
109
+
var Complex128 =require( '@stdlib/complex-float64-ctor' );
110
110
var randu =require( '@stdlib/random-base-randu' );
111
111
var round =require( '@stdlib/math-base-special-round' );
112
112
var real =require( '@stdlib/complex-real' );
@@ -159,7 +159,7 @@ for ( i = 0; i < 100; i++ ) {
159
159
Returns the real component of a double-precision complex floating-point number.
160
160
161
161
```c
162
-
#include"stdlib/complex/float64.h"
162
+
#include"stdlib/complex/float64/ctor.h"
163
163
164
164
stdlib_complex128_t z = stdlib_complex128( 5.0, 2.0 );
165
165
@@ -197,7 +197,7 @@ double stdlib_real( const stdlib_complex128_t z );
197
197
198
198
```c
199
199
#include "stdlib/complex/real.h"
200
-
#include "stdlib/complex/float64.h"
200
+
#include "stdlib/complex/float64/ctor.h"
201
201
#include <stdio.h>
202
202
203
203
int main( void ) {
@@ -240,7 +240,7 @@ int main( void ) {
240
240
## See Also
241
241
242
242
- <spanclass="package-name">[`@stdlib/complex-imag`][@stdlib/complex/imag]</span><spanclass="delimiter">: </span><spanclass="description">return the imaginary component of a double-precision complex floating-point number.</span>
243
-
- <spanclass="package-name">[`@stdlib/complex-reim`][@stdlib/complex/reim]</span><spanclass="delimiter">: </span><spanclass="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
243
+
- <spanclass="package-name">[`@stdlib/complex-float64/reim`][@stdlib/complex/float64/reim]</span><spanclass="delimiter">: </span><spanclass="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
0 commit comments