Skip to content

Commit 677f842

Browse files
committed
Auto-generated commit
1 parent c4c7294 commit 677f842

File tree

12 files changed

+87
-21
lines changed

12 files changed

+87
-21
lines changed

.github/.keepalive

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

CHANGELOG.md

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

7-
## Unreleased (2024-07-01)
7+
## Unreleased (2024-07-15)
8+
9+
<section class="features">
10+
11+
### Features
12+
13+
- [`722452c`](https://github.com/stdlib-js/stdlib/commit/722452c97282738c0a83e336720c63ee785bc69f) - rename 'none' transpose operation to 'no-transpose'
14+
15+
</section>
16+
17+
<!-- /.features -->
18+
19+
<section class="breaking-changes">
20+
21+
### BREAKING CHANGES
22+
23+
- [`722452c`](https://github.com/stdlib-js/stdlib/commit/722452c97282738c0a83e336720c63ee785bc69f): rename 'none' transpose operation to 'no-transpose'
24+
25+
</section>
26+
27+
<!-- /.breaking-changes -->
28+
29+
<section class="commits">
30+
31+
### Commits
32+
33+
<details>
34+
35+
- [`722452c`](https://github.com/stdlib-js/stdlib/commit/722452c97282738c0a83e336720c63ee785bc69f) - **feat:** rename 'none' transpose operation to 'no-transpose' _(by Athan Reines)_
36+
37+
</details>
38+
39+
</section>
40+
41+
<!-- /.commits -->
42+
43+
<section class="contributors">
44+
45+
### Contributors
46+
47+
A total of 1 person contributed to this release. Thank you to this contributor:
48+
49+
- Athan Reines
50+
51+
</section>
52+
53+
<!-- /.contributors -->
54+
55+
</section>
56+
57+
<!-- /.release -->
58+
59+
<section class="release" id="v0.0.1">
60+
61+
## 0.0.1 (2024-06-11)
62+
63+
<section class="features">
64+
65+
### Features
66+
67+
- [`87a0d77`](https://github.com/stdlib-js/stdlib/commit/87a0d77b81cc5bc8c05e40d6ec22f548c5d3dd14) - add `blas/base/transpose-operations`
68+
69+
</section>
70+
71+
<!-- /.features -->
872

973
<section class="commits">
1074

1175
### Commits
1276

1377
<details>
1478

15-
- [`a591e05`](https://github.com/stdlib-js/stdlib/commit/a591e052cf1b1515c267781b914c6a482e150425) - **test:** fix test configuration _(by Athan Reines)_
79+
- [`92564b0`](https://github.com/stdlib-js/stdlib/commit/92564b0633ff473785ceb4b14691a08a97dd62be) - **style:** fix indentation and rename files _(by Athan Reines)_
80+
- [`5e6bc89`](https://github.com/stdlib-js/stdlib/commit/5e6bc8976dc934eeba7ff67b30a344ef4c33b559) - **style:** fix indentation _(by Athan Reines)_
81+
- [`4cf962b`](https://github.com/stdlib-js/stdlib/commit/4cf962bb62a3592651cead050e70604e455c7e0e) - **docs:** update description _(by Athan Reines)_
82+
- [`87a0d77`](https://github.com/stdlib-js/stdlib/commit/87a0d77b81cc5bc8c05e40d6ec22f548c5d3dd14) - **feat:** add `blas/base/transpose-operations` _(by Athan Reines)_
1683

1784
</details>
1885

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ Returns a list of BLAS transpose operations.
7979

8080
```javascript
8181
var out = transposeOperations();
82-
// e.g., returns [ 'none', 'transpose', 'conjugate-transpose' ]
82+
// e.g., returns [ 'no-transpose', 'transpose', 'conjugate-transpose' ]
8383
```
8484

8585
The output array contains the following operations:
8686

87-
- `none`: no transposition.
87+
- `no-transpose`: no transposition.
8888
- `transpose`: transposition.
8989
- `conjugate-transpose`: conjugate transposition.
9090

dist/index.js

Lines changed: 5 additions & 5 deletions
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.

docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The output array contains the following operations:
66

7-
- none: no transposition.
7+
- no-transpose: no transposition.
88
- transpose: transposition.
99
- conjugate-transpose: conjugate transposition.
1010

@@ -16,7 +16,7 @@
1616
Examples
1717
--------
1818
> var out = {{alias}}()
19-
[ 'none', 'transpose', 'conjugate-transpose' ]
19+
[ 'no-transpose', 'transpose', 'conjugate-transpose' ]
2020

2121
See Also
2222
--------

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* @example
2727
* var list = transposeOperations();
28-
* // e.g., returns [ 'none', 'transpose', 'conjugate-transpose' ]
28+
* // e.g., returns [ 'no-transpose', 'transpose', 'conjugate-transpose' ]
2929
*/
3030
declare function transposeOperations(): Array<string>;
3131

lib/data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[
2-
"none",
2+
"no-transpose",
33
"transpose",
44
"conjugate-transpose"
55
]

lib/enum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function enumerated() {
3838
// NOTE: the following should match the C `transpose_operations.h` enumeration!!!!
3939
return {
4040
// No transposition:
41-
'none': 111,
41+
'no-transpose': 111,
4242

4343
// Transposition:
4444
'transpose': 112,

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* var transposeOperations = require( '@stdlib/blas-base-transpose-operations' );
2828
*
2929
* var list = transposeOperations();
30-
* // e.g., returns [ 'none', 'transpose', 'conjugate-transpose' ]
30+
* // e.g., returns [ 'no-transpose', 'transpose', 'conjugate-transpose' ]
3131
*/
3232

3333
// MODULES //

0 commit comments

Comments
 (0)