Skip to content

Commit aafcf4d

Browse files
committed
Auto-generated commit
1 parent a90432a commit aafcf4d

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 2 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-06-23)
7+
## Unreleased (2025-07-01)
88

99
<section class="features">
1010

@@ -50,6 +50,7 @@
5050

5151
<details>
5252

53+
- [`1d9e0f7`](https://github.com/stdlib-js/stdlib/commit/1d9e0f723c6962a3401a73d0a1955e5fd26cddc7) - **test:** fix comma position in expected value _(by Philipp Burckhardt)_
5354
- [`dc3d5b1`](https://github.com/stdlib-js/stdlib/commit/dc3d5b1a544dc54e76b709b762b840aeabfe0692) - **chore:** fix typo in test description _(by Philipp Burckhardt)_
5455
- [`b3c2d12`](https://github.com/stdlib-js/stdlib/commit/b3c2d120d3da72729235e034c7db01644ff70fa3) - **fix:** disable zero-padding for special values in `string/base/format-interpolate` [(#6957)](https://github.com/stdlib-js/stdlib/pull/6957) _(by Karan Anand)_
5556
- [`5d5742b`](https://github.com/stdlib-js/stdlib/commit/5d5742b1d6b22eb0e9d597242035be42833c004c) - **fix:** update `format-tokenize` to correctly handle escaped percent signs [(#6695)](https://github.com/stdlib-js/stdlib/pull/6695) _(by Karan Anand)_

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Bryan Elee <rxbryn@gmail.com>
3737
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
3838
Christopher Dambamuromo <chridam@gmail.com>
3939
Dan Rose <danoftheroses@gmail.com>
40+
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4041
Daniel Killenberger <daniel.killenberger@gmail.com>
4142
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
4243
Debashis Maharana <debashismaharana7854@gmail.com>
@@ -63,6 +64,7 @@ Girish Garg <garggirish2020@gmail.com>
6364
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
6465
Gunj Joshi <gunjjoshi8372@gmail.com>
6566
Gururaj Gurram <gururajgurram1512@gmail.com>
67+
Harishchandra Reddy <harish.7000@gmail.com>
6668
Haroon Rasheed <51189276+haroon26@users.noreply.github.com>
6769
Harsh <harshyadav6078@gmail.com>
6870
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
@@ -196,11 +198,13 @@ Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
196198
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
197199
Yugal Kaushik <yugalkaushik14@gmail.com>
198200
Yuvi Mittal <128018763+yuvi-mittal@users.noreply.github.com>
201+
deepak427 <62477872+deepak427@users.noreply.github.com>
199202
devshree-bhati <147095250+devshree-bhati@users.noreply.github.com>
200203
ditsu <170345142+ditsus@users.noreply.github.com>
201204
ekambains <bainsinbusiness@gmail.com>
202205
fadiothman22 <48636283+fadiothman22@users.noreply.github.com>
203206
iraandrushko <71790513+iraandrushko@users.noreply.github.com>
207+
jsai28 <54253219+jsai28@users.noreply.github.com>
204208
lohithganni <116790357+lohithganni@users.noreply.github.com>
205209
olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com>
206210
pranav-1720 <123018993+pranav-1720@users.noreply.github.com>

remove-words/test/test.cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ tape( 'the command-line interface supports use as a standard stream', opts, func
194194
'--words=little,too,late'
195195
];
196196

197-
expected = 'Hello, Sir!\n"Too , ," he said to me...\n';
197+
expected = 'Hello, Sir!\n"Too , ", he said to me...\n';
198198

199199
exec( cmd.join( ' ' ), done );
200200

@@ -222,7 +222,7 @@ tape( 'the command-line interface supports use as a standard stream (ignore-case
222222
'--ignore-case'
223223
];
224224

225-
expected = 'Hello, Sir!\n" , ," he said to me...\n';
225+
expected = 'Hello, Sir!\n" , ", he said to me...\n';
226226

227227
exec( cmd.join( ' ' ), done );
228228

0 commit comments

Comments
 (0)