Skip to content

Commit 2218162

Browse files
committed
Auto-generated commit
1 parent 193c315 commit 2218162

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`aaa6e06`](https://github.com/stdlib-js/stdlib/commit/aaa6e06422092ba41c57fc3dfb2a8b833edd0163) - add `vconcat` to namespace
1314
- [`560eaba`](https://github.com/stdlib-js/stdlib/commit/560eaba74ab49beef39d2cc8c4cdda08d5c1060f) - add `ndarray/vconcat` [(#11581)](https://github.com/stdlib-js/stdlib/pull/11581)
1415
- [`bbac071`](https://github.com/stdlib-js/stdlib/commit/bbac07144b6a85eb308745484ad491ce45bcd0f8) - add `atleast1d`, `atleast2d`, and `atleast3d` to namespace
1516
- [`7352d14`](https://github.com/stdlib-js/stdlib/commit/7352d144ee581fe70403014ce705c1463a23e171) - add `rowcat` to namespace
@@ -857,6 +858,7 @@ A total of 49 issues were closed in this release:
857858

858859
<details>
859860

861+
- [`aaa6e06`](https://github.com/stdlib-js/stdlib/commit/aaa6e06422092ba41c57fc3dfb2a8b833edd0163) - **feat:** add `vconcat` to namespace _(by Athan Reines)_
860862
- [`560eaba`](https://github.com/stdlib-js/stdlib/commit/560eaba74ab49beef39d2cc8c4cdda08d5c1060f) - **feat:** add `ndarray/vconcat` [(#11581)](https://github.com/stdlib-js/stdlib/pull/11581) _(by Muhammad Haris)_
861863
- [`35634a8`](https://github.com/stdlib-js/stdlib/commit/35634a8d15e49b92e562a9c6cd8361b988c8ced2) - **bench:** refactor to use string interpolation in `@stdlib/ndarray/base` [(#11433)](https://github.com/stdlib-js/stdlib/pull/11433) _(by Karan Anand)_
862864
- [`e08ef82`](https://github.com/stdlib-js/stdlib/commit/e08ef82b7c3646523071400cbe2d82542b46efce) - **docs:** remove stray `err` handling in examples and enable lint rule [(#11556)](https://github.com/stdlib-js/stdlib/pull/11556) _(by Philipp Burckhardt)_

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,15 @@ setReadOnly( ns, 'ndarray2string', require( './../to-string' ) );
963963
*/
964964
setReadOnly( ns, 'unshift', require( './../unshift' ) );
965965

966+
/**
967+
* @name vconcat
968+
* @memberof ns
969+
* @readonly
970+
* @type {Namespace}
971+
* @see {@link module:@stdlib/ndarray/vconcat}
972+
*/
973+
setReadOnly( ns, 'vconcat', require( './../vconcat' ) );
974+
966975
/**
967976
* @name vector
968977
* @memberof ns

0 commit comments

Comments
 (0)