Skip to content

Commit bb6d2d0

Browse files
committed
Auto-generated commit
1 parent 03209df commit bb6d2d0

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/.keepalive

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

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
- name: 'Replace GitHub MathJax equations with SVGs'
154154
run: |
155155
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/```math\n([\s\S]+?)\n```\n\n//g'
156-
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
156+
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*?)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
157157
158158
# Replace GitHub links to individual packages with npm links:
159159
- name: 'Replace all GitHub links to individual packages with npm links'

CHANGELOG.md

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

7-
## Unreleased (2026-06-24)
7+
## Unreleased (2026-08-02)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`7ae11bc`](https://github.com/stdlib-js/stdlib/commit/7ae11bca9e05607a14425d165dfed57584b880b8) - **chore:** clean-up [(#13834)](https://github.com/stdlib-js/stdlib/pull/13834) _(by Philipp Burckhardt)_
1516
- [`7587c51`](https://github.com/stdlib-js/stdlib/commit/7587c516c9cf38a7048079bf01c42135061b8d98) - **docs:** propagate TSDoc declaration fixes to sibling packages [(#12524)](https://github.com/stdlib-js/stdlib/pull/12524) _(by Philipp Burckhardt)_
1617
- [`ad3f046`](https://github.com/stdlib-js/stdlib/commit/ad3f04667c2cc32b6e749d8b08259afecff3f1e8) - **bench:** refactor to use string interpolation in `@stdlib/ndarray-base` [(#11434)](https://github.com/stdlib-js/stdlib/pull/11434) _(by Karan Anand)_
1718

benchmark/c/benchmark.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,28 +210,28 @@ int main( void ) {
210210
print_version();
211211
for ( i = 0; i < REPEATS; i++ ) {
212212
count += 1;
213-
printf( "# c::native::%s:mode=error\n", NAME );
213+
printf( "# c::%s:mode=error\n", NAME );
214214
elapsed = benchmark1();
215215
print_results( elapsed );
216216
printf( "ok %d benchmark finished\n", count );
217217
}
218218
for ( i = 0; i < REPEATS; i++ ) {
219219
count += 1;
220-
printf( "# c::native::%s:mode=clamp\n", NAME );
220+
printf( "# c::%s:mode=clamp\n", NAME );
221221
elapsed = benchmark2();
222222
print_results( elapsed );
223223
printf( "ok %d benchmark finished\n", count );
224224
}
225225
for ( i = 0; i < REPEATS; i++ ) {
226226
count += 1;
227-
printf( "# c::native::%s:mode=wrap\n", NAME );
227+
printf( "# c::%s:mode=wrap\n", NAME );
228228
elapsed = benchmark3();
229229
print_results( elapsed );
230230
printf( "ok %d benchmark finished\n", count );
231231
}
232232
for ( i = 0; i < REPEATS; i++ ) {
233233
count += 1;
234-
printf( "# c::native::%s:mode=normalize\n", NAME );
234+
printf( "# c::%s:mode=normalize\n", NAME );
235235
elapsed = benchmark4();
236236
print_results( elapsed );
237237
printf( "ok %d benchmark finished\n", count );

0 commit comments

Comments
 (0)