Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 17, 2024
1 parent 2411a02 commit 1d35d7a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-07-07)
## Unreleased (2024-07-17)

<section class="features">

Expand All @@ -22,6 +22,9 @@

<details>

- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
- [`ed9c0a5`](https://github.com/stdlib-js/stdlib/commit/ed9c0a5e55ff09af3dd6af8c38615480e2c1828e) - **refactor:** update paths _(by Athan Reines)_
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_
- [`a78f7d1`](https://github.com/stdlib-js/stdlib/commit/a78f7d1b859b6b1d7b0bc0ee4daf76789e3e0910) - **style:** add missing spaces _(by Philipp Burckhardt)_
- [`88cece6`](https://github.com/stdlib-js/stdlib/commit/88cece679d728150847dc2b5c957b395bffe7d90) - **feat:** add boolean dtype support to `array/pool` [(#2486)](https://github.com/stdlib-js/stdlib/pull/2486) _(by Jaysukh Makvana, Athan Reines)_
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@
"@stdlib/assert-is-typed-array": "^0.2.1",
"@stdlib/boolean-ctor": "^0.2.1",
"@stdlib/complex-float32-ctor": "^0.0.1",
"@stdlib/complex-float32-imag": "github:stdlib-js/complex-float32-imag#main",
"@stdlib/complex-float32-real": "github:stdlib-js/complex-float32-real#main",
"@stdlib/complex-float64-ctor": "^0.0.1",
"@stdlib/complex-imag": "^0.2.1",
"@stdlib/complex-imagf": "^0.2.1",
"@stdlib/complex-float64-imag": "github:stdlib-js/complex-float64-imag#main",
"@stdlib/complex-real": "^0.2.1",
"@stdlib/complex-realf": "^0.2.1",
"@stdlib/math-base-special-pow": "^0.2.1",
"@stdlib/random-base-randu": "^0.2.1",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
Expand Down
6 changes: 3 additions & 3 deletions test/test.factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var Boolean = require( '@stdlib/boolean-ctor' );
var real = require( '@stdlib/complex-real' );
var realf = require( '@stdlib/complex-realf' );
var imag = require( '@stdlib/complex-imag' );
var imagf = require( '@stdlib/complex-imagf' );
var realf = require( '@stdlib/complex-float32-real' );
var imag = require( '@stdlib/complex-float64-imag' );
var imagf = require( '@stdlib/complex-float32-imag' );
var factory = require( './../lib/factory.js' );


Expand Down
6 changes: 3 additions & 3 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var Boolean = require( '@stdlib/boolean-ctor' );
var real = require( '@stdlib/complex-real' );
var realf = require( '@stdlib/complex-realf' );
var imag = require( '@stdlib/complex-imag' );
var imagf = require( '@stdlib/complex-imagf' );
var realf = require( '@stdlib/complex-float32-real' );
var imag = require( '@stdlib/complex-float64-imag' );
var imagf = require( '@stdlib/complex-float32-imag' );
var typedarraypool = require( './../lib' );


Expand Down

0 comments on commit 1d35d7a

Please sign in to comment.