8000 Auto-generated commit · stdlib-js/complex-float64-base@2ee0bb3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2ee0bb3

Browse files
committed
Auto-generated commit
1 parent 66b5e21 commit 2ee0bb3

File tree

5 files changed

+40
-4
lines changed

5 files changed

+40
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-01-22)
7+
## Unreleased (2025-01-23)
88

99
<section class="packages">
1010

@@ -20,6 +20,7 @@
2020

2121
##### Features
2222

23+
- [`a4340c8`](https://github.com/stdlib-js/stdlib/commit/a4340c8e2aea6c40af52e3665c82e35af7b50f96) - add `muladd` to namespace
2324
- [`82ba934`](https://github.com/stdlib-js/stdlib/commit/82ba9342e9964589c7742757380c72049d5389d4) - add `scale` to namespace
2425

2526
</section>
@@ -77,6 +78,28 @@
7778

7879
<!-- /.package -->
7980

81+
<section class="package" id="complex-float64-base-mul-add-unreleased">
82+
83+
#### [@stdlib/complex/float64/base/mul-add](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/mul-add)
84+
85+
<details>
86+
87+
<section class="features">
88+
89+
##### Features
90+
91+
- [`68cb0b2`](https://github.com/stdlib-js/stdlib/commit/68cb0b20a2333a13fa86f17c9efeb4909179a816) - add `complex/float64/base/mul-add`
92+
93+
</section>
94+
95+
<!-- /.features -->
96+
97+
</details>
98+
99+
</section>
100+
101+
<!-- /.package -->
102+
80103
<section class="package" id="complex-float64-base-scale-unreleased">
81104

82105
#### [@stdlib/complex/float64/base/scale](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/scale)
@@ -122,6 +145,9 @@ A total of 2 people contributed to this release. Thank you to the following cont
122145

123146
<details>
124147

148+
- [`eb938ff`](https://github.com/stdlib-js/stdlib/commit/eb938fff22223cbbfb04568e30a4f62f8455d3bc) - **bench:** fix incomplete refactoring _(by Athan Reines)_
149+
- [`a4340c8`](https://github.com/stdlib-js/stdlib/commit/a4340c8e2aea6c40af52e3665c82e35af7b50f96) - **feat:** add `muladd` to namespace _(by Athan Reines)_
150+
- [`68cb0b2`](https://github.com/stdlib-js/stdlib/commit/68cb0b20a2333a13fa86f17c9efeb4909179a816) - **feat:** add `complex/float64/base/mul-add` _(by Athan Reines)_
125151
- [`3f8a327`](https://github.com/stdlib-js/stdlib/commit/3f8a327f98267690ae7d101c84e522810986caf0) - **bench:** fix syntax _(by Athan Reines)_
126152
- [`2ddce39`](https://github.com/stdlib-js/stdlib/commit/2ddce39825650066ba35c74a217ab6425e4f3c9c) - **bench:** fix copy-paste error _(by Athan Reines)_
127153
- [`82ba934`](https://github.com/stdlib-js/stdlib/commit/82ba9342e9964589c7742757380c72049d5389d4) - **feat:** add `scale` to namespace _(by Athan Reines)_

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@ setReadOnly( ns, 'assert', require( '@stdlib/complex-float64-base-assert' ) );
6363
*/
6464
setReadOnly( ns, 'mul', require( '@stdlib/complex-float64-base-mul' ) );
6565

66+
/**
67+
* @name muladd
68+
* @memberof ns
69+
* @readonly
70+
* @type {Function}
71+
* @see {@link module:@stdlib/complex/float64/base/mul-add}
72+
*/
73+
setReadOnly( ns, 'muladd', require( '@stdlib/complex-float64-base-mul-add' ) );
74+
6675
/**
6776
* @name scale
6877
* @memberof ns

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"@stdlib/complex-float64-base-add": "^0.1.0",
4040
"@stdlib/complex-float64-base-assert": "github:stdlib-js/complex-float64-base-assert#main",
4141
"@stdlib/complex-float64-base-mul": "^0.1.0",
42+
"@stdlib/complex-float64-base-mul-add": "github:stdlib-js/complex-float64-base-mul-add#main",
4243
"@stdlib/complex-float64-base-scale": "github:stdlib-js/complex-float64-base-scale#main",
4344
"@stdlib/utils-define-read-only-property": "^0.2.2"
4445
},

0 commit comments

Comments
 (0)
0