Skip to content

Commit b7439fc

Browse files
committed
Auto-generated commit
1 parent d219ade commit b7439fc

5 files changed

Lines changed: 15 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-07-07)
7+
## Unreleased (2024-07-17)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`32bbcb3`](https://github.com/stdlib-js/stdlib/commit/32bbcb3b3dae1f028fd18166ee7875a93d44d0ee) - **refactor:** update paths _(by Athan Reines)_
16+
- [`ed9c0a5`](https://github.com/stdlib-js/stdlib/commit/ed9c0a5e55ff09af3dd6af8c38615480e2c1828e) - **refactor:** update paths _(by Athan Reines)_
1517
- [`659f752`](https://github.com/stdlib-js/stdlib/commit/659f752db18317bf5fc237fdbcad0d74b61e1ed9) - **style:** add missing spaces _(by Philipp Burckhardt)_
1618

1719
</details>
@@ -24,8 +26,9 @@
2426

2527
### Contributors
2628

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

31+
- Athan Reines
2932
- Philipp Burckhardt
3033

3134
</section>

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ var parseComplex128 = require( '@stdlib/complex-float64-parse' );
7878
Parse a string representation of a 128-bit [complex number][@stdlib/complex/float64/ctor].
7979

8080
```javascript
81-
var real = require( '@stdlib/complex-real' );
82-
var imag = require( '@stdlib/complex-imag' );
81+
var real = require( '@stdlib/complex-float64-real' );
82+
var imag = require( '@stdlib/complex-float64-imag' );
8383

8484
var str = '5 + 3i';
8585

@@ -118,8 +118,8 @@ For details on the string format, see [Complex128][@stdlib/complex/float64/ctor]
118118
```javascript
119119
var parseComplex128 = require( '@stdlib/complex-float64-parse' );
120120
var isComplex128 = require( '@stdlib/assert-is-complex128' );
121-
var real = require( '@stdlib/complex-real' );
122-
var imag = require( '@stdlib/complex-imag' );
121+
var real = require( '@stdlib/complex-float64-real' );
122+
var imag = require( '@stdlib/complex-float64-imag' );
123123

124124
var str = '1e3 - 2.75i';
125125

examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
'use strict';
2020

2121
var isComplex128 = require( '@stdlib/assert-is-complex128' );
22-
var real = require( '@stdlib/complex-real' );
23-
var imag = require( '@stdlib/complex-imag' );
22+
var real = require( '@stdlib/complex-float64-real' );
23+
var imag = require( '@stdlib/complex-float64-imag' );
2424
var parseComplex128 = require( './../lib' );
2525

2626
var str = '-0.5 + 1.25i';

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
"devDependencies": {
4848
"@stdlib/assert-is-complex128": "^0.2.1",
4949
"@stdlib/assert-is-same-complex128": "^0.2.1",
50-
"@stdlib/complex-imag": "^0.2.1",
51-
"@stdlib/complex-real": "^0.2.1",
50+
"@stdlib/complex-float64-imag": "github:stdlib-js/complex-float64-imag#main",
51+
"@stdlib/complex-float64-real": "github:stdlib-js/complex-float64-real#main",
5252
"@stdlib/constants-float64-ninf": "^0.2.1",
5353
"@stdlib/constants-float64-pinf": "^0.2.1",
5454
"@stdlib/math-base-assert-is-nan": "^0.2.1",

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' );
2727
var isComplex128 = require( '@stdlib/assert-is-complex128' );
2828
var isSameComplex128 = require( '@stdlib/assert-is-same-complex128' );
2929
var isNan = require( '@stdlib/math-base-assert-is-nan' );
30-
var real = require( '@stdlib/complex-real' );
31-
var imag = require( '@stdlib/complex-imag' );
30+
var real = require( '@stdlib/complex-float64-real' );
31+
var imag = require( '@stdlib/complex-float64-imag' );
3232
var parseComplex128 = require( './../lib' );
3333

3434

0 commit comments

Comments
 (0)