Skip to content

Commit b6b9084

Browse files
committed
Auto-generated commit
1 parent 64a3165 commit b6b9084

File tree

4 files changed

+35
-5
lines changed

4 files changed

+35
-5
lines changed

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

CHANGELOG.md

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

7-
## Unreleased (2025-09-06)
7+
## Unreleased (2025-09-14)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#8027](https://github.com/stdlib-js/stdlib/issues/8027)
16+
17+
</section>
18+
19+
<!-- /.issues -->
820

921
<section class="commits">
1022

1123
### Commits
1224

1325
<details>
1426

27+
- [`22abc2e`](https://github.com/stdlib-js/stdlib/commit/22abc2e5ddc56329be7611dbc69682522e797eca) - **chore:** address commit comments [(#8072)](https://github.com/stdlib-js/stdlib/pull/8072) _(by Vara Rahul Rajana, Athan Reines)_
1528
- [`8b0b780`](https://github.com/stdlib-js/stdlib/commit/8b0b78084a2ff5d7a76ba3c5945b13d7f0906f4f) - **docs:** fix TypeScript declaration linting errors _(by Philipp Burckhardt)_
1629
- [`21ec206`](https://github.com/stdlib-js/stdlib/commit/21ec2060d7496322ce32d4f984230d0c131974cc) - **docs:** clean-up example code _(by Philipp Burckhardt)_
1730
- [`7483bef`](https://github.com/stdlib-js/stdlib/commit/7483bef13b1d3241347266d25a02957269419825) - **test:** use .strictEqual() instead of .equal() _(by Philipp Burckhardt)_
@@ -26,9 +39,11 @@
2639

2740
### Contributors
2841

29-
A total of 1 person contributed to this release. Thank you to this contributor:
42+
A total of 3 people contributed to this release. Thank you to the following contributors:
3043

44+
- Athan Reines
3145
- Philipp Burckhardt
46+
- Vara Rahul Rajana
3247

3348
</section>
3449

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Frank Kovacs <fran70kk@gmail.com>
6666
GK Bishnoi <gkishan1kyt@gmail.com>
6767
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
6868
Gaurav <gaurav70380@gmail.com>
69+
Gaurav Kaushik <144526331+Gauravkaushik-1206@users.noreply.github.com>
6970
Gautam Kaushik <162317291+Kaushikgtm@users.noreply.github.com>
7071
Gautam sharma <gautamkrishnasharma1@gmail.com>
7172
GeoDaoyu <geodaoyu@foxmail.com>
@@ -180,6 +181,7 @@ Saurabh Singh <saurabhsraghuvanshi@gmail.com>
180181
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
181182
Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
182183
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
184+
Shaswata Panda <106397517+shaswata-26@users.noreply.github.com>
183185
Shivam Ahir <11shivam00@gmail.com>
184186
Shivansh <114570926+shiv343@users.noreply.github.com>
185187
Shraddheya Shendre <shendreshraddheya@gmail.com>
@@ -200,6 +202,7 @@ Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
200202
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
201203
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
202204
Tushar Bhardwaj <155543597+TusharBhardwaj441@users.noreply.github.com>
205+
Tyson Cung <45380903+tysoncung@users.noreply.github.com>
203206
Uday Kakade <141299403+udaykakade25@users.noreply.github.com>
204207
Ujjwal Kirti <64329707+ujjwalkirti@users.noreply.github.com>
205208
Utkarsh <http://utkarsh11105@gmail.com>

docs/types/index.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,31 @@
2626
*
2727
* @example
2828
* var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
29+
*
2930
* var str = toBinaryStringf( toFloat32( 4.0 ) );
3031
* // returns '01000000100000000000000000000000'
3132
*
3233
* @example
3334
* var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
35+
*
3436
* var str = toBinaryStringf( toFloat32( 3.141592653589793 ) );
3537
* // returns '01000000010010010000111111011011'
3638
*
3739
* @example
3840
* var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
41+
*
3942
* var str = toBinaryStringf( toFloat32( -1e38 ) );
4043
* // returns '11111110100101100111011010011001'
4144
*
4245
* @example
4346
* var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
47+
*
4448
* var str = toBinaryStringf( toFloat32( -3.14e-39 ) );
4549
* // returns '10000000001000100011000100001011'
4650
*
4751
* @example
4852
* var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
53+
*
4954
* var str = toBinaryStringf( toFloat32( 1.4e-45 ) );
5055
* // returns '00000000000000000000000000000001'
5156
*
@@ -63,11 +68,13 @@
6368
*
6469
* @example
6570
* var PINF = require( '@stdlib/constants-float32-pinf' );
71+
*
6672
* var str = toBinaryStringf( PINF );
6773
* // returns '01111111100000000000000000000000'
6874
*
6975
* @example
7076
* var NINF = require( '@stdlib/constants-float32-ninf' );
77+
*
7178
* var str = toBinaryStringf( NINF );
7279
* // returns '11111111100000000000000000000000'
7380
*/

0 commit comments

Comments
 (0)