Skip to content

Commit 1cbd4ea

Browse files
committed
Auto-generated commit
1 parent d54129e commit 1cbd4ea

File tree

7 files changed

+53
-19
lines changed

7 files changed

+53
-19
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-02-16)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`a20ca4a`](https://github.com/stdlib-js/stdlib/commit/a20ca4a869cb0f37fce36449969104314f3e78c8) - **docs:** update REPL namespace documentation [(#10309)](https://github.com/stdlib-js/stdlib/pull/10309) _(by stdlib-bot, Philipp Burckhardt)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Philipp Burckhardt
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.4.1">
640

741
## 0.4.1 (2026-02-07)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
258258
[npm-image]: http://img.shields.io/npm/v/@stdlib/repl-help.svg
259259
[npm-url]: https://npmjs.org/package/@stdlib/repl-help
260260

261-
[test-image]: https://github.com/stdlib-js/repl-help/actions/workflows/test.yml/badge.svg?branch=v0.4.1
262-
[test-url]: https://github.com/stdlib-js/repl-help/actions/workflows/test.yml?query=branch:v0.4.1
261+
[test-image]: https://github.com/stdlib-js/repl-help/actions/workflows/test.yml/badge.svg?branch=main
262+
[test-url]: https://github.com/stdlib-js/repl-help/actions/workflows/test.yml?query=branch:main
263263

264264
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/repl-help/main.svg
265265
[coverage-url]: https://codecov.io/github/stdlib-js/repl-help?branch=main

data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ base.capitalize,"\nbase.capitalize( str )\n Capitalizes the first character i
228228
base.cbrt,"\nbase.cbrt( x )\n Computes the cube root of a double-precision floating-point number.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Cube root.\n\n Examples\n --------\n > var y = base.cbrt( 64.0 )\n 4.0\n > y = base.cbrt( 27.0 )\n 3.0\n > y = base.cbrt( 0.0 )\n 0.0\n > y = base.cbrt( -0.0 )\n -0.0\n > y = base.cbrt( -9.0 )\n ~-2.08\n > y = base.cbrt( NaN )\n NaN\n\n See Also\n --------\n base.pow, base.sqrt\n"
229229
base.cbrtf,"\nbase.cbrtf( x )\n Computes the cube root of a single-precision floating-point number.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Cube root.\n\n Examples\n --------\n > var y = base.cbrtf( 64.0 )\n 4.0\n > y = base.cbrtf( 27.0 )\n 3.0\n > y = base.cbrtf( 0.0 )\n 0.0\n > y = base.cbrtf( -0.0 )\n -0.0\n > y = base.cbrtf( -9.0 )\n ~-2.08\n > y = base.cbrtf( NaN )\n NaN\n\n See Also\n --------\n base.cbrt, base.sqrtf\n"
230230
base.cceil,"\nbase.cceil( z )\n Rounds each component of a double-precision complex floating-point number\n toward positive infinity.\n\n Parameters\n ----------\n z: Complex128\n Complex number.\n\n Returns\n -------\n out: Complex128\n Result.\n\n Examples\n --------\n > var v = base.cceil( new Complex128( -1.5, 2.5 ) )\n <Complex128>[ -1.0, 3.0 ]\n\n See Also\n --------\n base.cceiln, base.cfloor, base.cround\n"
231-
base.cceilf,"\nbase.cceilf( z )\n Rounds each component of a single-precision complex floating-point number\n toward positive infinity.\n\n Parameters\n ----------\n z: Complex64\n Complex number.\n\n Returns\n -------\n out: Complex64\n Result.\n\n Examples\n --------\n > var v = base.cceilf( new Complex64( -1.5, 2.5 ) )\n <Complex64>\n > var re = realf( v )\n -1.0\n > var im = imagf( v )\n 3.0\n\n See Also\n --------\n base.cceil\n"
231+
base.cceilf,"\nbase.cceilf( z )\n Rounds each component of a single-precision complex floating-point number\n toward positive infinity.\n\n Parameters\n ----------\n z: Complex64\n Complex number.\n\n Returns\n -------\n out: Complex64\n Result.\n\n Examples\n --------\n > var v = base.cceilf( new Complex64( -1.5, 2.5 ) )\n <Complex64>[ -1.0, 3.0 ]\n\n See Also\n --------\n base.cceil\n"
232232
base.cceiln,"\nbase.cceiln( z, n )\n Rounds each component of a double-precision complex number to the nearest\n multiple of `10^n` toward positive infinity.\n\n Parameters\n ----------\n z: Complex128\n Complex number.\n\n n: integer\n Integer power of 10.\n\n Returns\n -------\n out: Complex128\n Real and imaginary components.\n\n Examples\n --------\n > var out = base.cceiln( new Complex128( 5.555, -3.333 ), -2 )\n <Complex128>\n > var re = real( out )\n 5.56\n > var im = imag( out )\n -3.33\n\n See Also\n --------\n base.cceil, base.cfloorn, base.croundn\n"
233233
base.ccis,"\nbase.ccis( z )\n Evaluates the cis function for a double-precision complex floating-point\n number.\n\n Parameters\n ----------\n z: Complex128\n Complex number.\n\n Returns\n -------\n out: Complex128\n Complex number.\n\n Examples\n --------\n > var y = base.ccis( new Complex128( 0.0, 0.0 ) )\n <Complex128>[ 1.0, 0.0 ]\n > y = base.ccis( new Complex128( 1.0, 0.0 ) )\n <Complex128>[ ~0.540, ~0.841 ]\n\n"
234234
base.cdiv,"\nbase.cdiv( z1, z2 )\n Divides two double-precision complex floating-point numbers.\n\n Parameters\n ----------\n z1: Complex128\n Complex number.\n\n z2: Complex128\n Complex number.\n\n Returns\n -------\n out: Complex128\n Result.\n\n Examples\n --------\n > var z1 = new Complex128( -13.0, -1.0 )\n <Complex128>\n > var z2 = new Complex128( -2.0, 1.0 )\n <Complex128>\n > var y = base.cdiv( z1, z2 )\n <Complex128>\n > var re = real( y )\n 5.0\n > var im = imag( y )\n 3.0\n\n\nbase.cdiv.assign( re1, im1, re2, im2, out, strideOut, offsetOut )\n Divides two double-precision complex floating-point numbers and assigns\n results to a provided output array.\n\n Parameters\n ----------\n re1: number\n Real component of the first complex number.\n\n im1: number\n Imaginary component of the first complex number.\n\n re2: number\n Real component of the second complex number.\n\n im2: number\n Imaginary component of the second complex number.\n\n out: ArrayLikeObject\n Output array.\n\n strideOut: integer\n Stride length.\n\n offsetOut: integer\n Starting index.\n\n Returns\n -------\n out: ArrayLikeObject\n Output array.\n\n Examples\n --------\n > var out = new Float64Array( 2 );\n > base.cdiv.assign( -13.0, -1.0, -2.0, 1.0, out, 1, 0 )\n <Float64Array>[ 5.0, 3.0 ]\n\n\nbase.cdiv.strided( z1, sz1, oz1, z2, sz2, oz2, out, so, oo )\n Divides two double-precision complex floating-point numbers stored in real-\n valued strided array views and assigns results to a provided strided output\n array.\n\n Parameters\n ----------\n z1: ArrayLikeObject\n First complex number view.\n\n sz1: integer\n Stride length for `z1`.\n\n oz1: integer\n Starting index for `z1`.\n\n z2: ArrayLikeObject\n Second complex number view.\n\n sz2: integer\n Stride length for `z2`.\n\n oz2: integer\n Starting index for `z2`.\n\n out: ArrayLikeObject\n Output array.\n\n so: integer\n Stride length for `out`.\n\n oo: integer\n Starting index for `out`.\n\n Returns\n -------\n out: ArrayLikeObject\n Output array.\n\n Examples\n --------\n > var z1 = new Float64Array( [ -13.0, -1.0 ] );\n > var z2 = new Float64Array( [ -2.0, 1.0 ] );\n > var out = new Float64Array( 2 );\n > base.cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, 0 )\n <Float64Array>[ 5.0, 3.0 ]\n\n See Also\n --------\n base.cadd, base.cmul, base.csub"

data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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.

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,23 @@
5050
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"
5151
},
5252
"devDependencies": {
53-
"@stdlib/assert-is-browser": "^0.2.2",
53+
"@stdlib/assert-is-browser": "^0.2.3",
5454
"@stdlib/assert-is-windows": "^0.2.3",
55-
"@stdlib/fs-read-json": "^0.2.3",
56-
"@stdlib/fs-resolve-parent-path": "^0.2.2",
57-
"@stdlib/fs-write-file": "^0.2.2",
55+
"@stdlib/fs-read-json": "^0.2.4",
56+
"@stdlib/fs-resolve-parent-path": "^0.2.3",
57+
"@stdlib/fs-write-file": "^0.2.3",
5858
"@stdlib/namespace": "^0.3.3",
59-
"@stdlib/namespace-aliases": "^0.4.0",
60-
"@stdlib/namespace-pkg2alias": "^0.4.0",
61-
"@stdlib/process-exec-path": "^0.2.2",
62-
"@stdlib/random-base-discrete-uniform": "^0.2.1",
63-
"@stdlib/string-replace": "^0.2.2",
64-
"@stdlib/utils-dirname": "^0.2.2",
65-
"@stdlib/utils-keys": "^0.2.2",
59+
"@stdlib/namespace-aliases": "^0.4.1",
60+
"@stdlib/namespace-pkg2alias": "^0.4.1",
61+
"@stdlib/process-exec-path": "^0.2.3",
62+
"@stdlib/random-base-discrete-uniform": "^0.2.2",
63+
"@stdlib/string-replace": "^0.2.3",
64+
"@stdlib/utils-dirname": "^0.2.3",
65+
"@stdlib/utils-keys": "^0.2.3",
6666
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6767
"istanbul": "^0.4.1",
6868
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
69-
"@stdlib/bench-harness": "^0.2.2"
69+
"@stdlib/bench-harness": "^0.2.3"
7070
},
7171
"engines": {
7272
"node": ">=0.10.0",

0 commit comments

Comments
 (0)