Skip to content

Commit 9ccfa69

Browse files
committed
Auto-generated commit
1 parent 9930420 commit 9ccfa69

4 files changed

Lines changed: 6 additions & 5 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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-06-24)
7+
## Unreleased (2026-07-10)
88

99
<section class="bug-fixes">
1010

@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`442d4f0`](https://github.com/stdlib-js/stdlib/commit/442d4f0854d1d0954409f2a5ac4d77e93a3b3968) - **docs:** fix heading _(by Athan Reines)_
3738
- [`32b7db2`](https://github.com/stdlib-js/stdlib/commit/32b7db285319cc63791eb5f232fb3bf6dc4409e9) - **chore:** fix JavaScript lint errors [(#12678)](https://github.com/stdlib-js/stdlib/pull/12678) _(by titanniya542-spec)_
3839
- [`95a8c41`](https://github.com/stdlib-js/stdlib/commit/95a8c41a2a5313aea289e722bed88bc888454233) - **fix:** use correct argument value in error message and propagate JSDoc fixes to sibling packages [(#12302)](https://github.com/stdlib-js/stdlib/pull/12302) _(by Philipp Burckhardt)_
3940
- [`5e94b53`](https://github.com/stdlib-js/stdlib/commit/5e94b5366163e541eee1767360ac01eecf4a5df4) - **bench:** use string interpolation in `blas/base/dspr` [(#10516)](https://github.com/stdlib-js/stdlib/pull/10516) _(by Om-A-osc)_
@@ -48,8 +49,9 @@ This release closes the following issue:
4849

4950
### Contributors
5051

51-
A total of 3 people contributed to this release. Thank you to the following contributors:
52+
A total of 4 people contributed to this release. Thank you to the following contributors:
5253

54+
- Athan Reines
5355
- Om-A-osc
5456
- Philipp Burckhardt
5557
- titanniya542-spec

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ dspr( 'row-major', 'upper', 3, 1.0, x1, -1, AP );
117117
// AP => <Float64Array>[ 2.0, 4.0, 6.0, 5.0, 8.0, 10.0 ]
118118
```
119119

120-
#### dspr.ndarray( uplo, N, α, x, sx, ox, AP, sap, oap )
120+
#### dspr.ndarray( order, uplo, N, α, x, sx, ox, AP, sap, oap )
121121

122122
Performs the symmetric rank 1 operation `A = α*x*x^T + A`, using alternative indexing semantics and where `α` is a scalar, `x` is an `N` element vector, and `A` is an `N` by `N` symmetric matrix supplied in packed form.
123123

0 commit comments

Comments
 (0)