Skip to content

Commit 94c2267

Browse files
committed
Auto-generated commit
1 parent b137e73 commit 94c2267

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@
127127

128128
### Bug Fixes
129129

130+
- [`a102897`](https://github.com/stdlib-js/stdlib/commit/a102897c86676e033a999d61e90df8eb3b16b99e) - remove extra slash from include path
131+
- [`7351a51`](https://github.com/stdlib-js/stdlib/commit/7351a5144b489c2c20b1a7f6b8f8d1a1de025269) - remove unused ninf dependency from hyp2f1
132+
- [`4b5b0e7`](https://github.com/stdlib-js/stdlib/commit/4b5b0e7a46e88ee0ac8bdfdc2f98a07d59898c78) - remove double slash in include path for ninf.h in betaln
130133
- [`6b1c190`](https://github.com/stdlib-js/stdlib/commit/6b1c1902e586b2a2437f5b97f6abe4b4c780da92) - use correct dependency in manifest.json
131134
- [`b82a6a3`](https://github.com/stdlib-js/stdlib/commit/b82a6a3e079a541f151f4391e64f7a2242363a73) - remove extra slash from include path
132135
- [`ed88389`](https://github.com/stdlib-js/stdlib/commit/ed88389cdb8cdfb939e70e55d9167d8dc3984121) - use correct type emulation
@@ -515,6 +518,9 @@ A total of 47 issues were closed in this release:
515518

516519
<details>
517520

521+
- [`a102897`](https://github.com/stdlib-js/stdlib/commit/a102897c86676e033a999d61e90df8eb3b16b99e) - **fix:** remove extra slash from include path _(by Philipp Burckhardt)_
522+
- [`7351a51`](https://github.com/stdlib-js/stdlib/commit/7351a5144b489c2c20b1a7f6b8f8d1a1de025269) - **fix:** remove unused ninf dependency from hyp2f1 _(by Philipp Burckhardt)_
523+
- [`4b5b0e7`](https://github.com/stdlib-js/stdlib/commit/4b5b0e7a46e88ee0ac8bdfdc2f98a07d59898c78) - **fix:** remove double slash in include path for ninf.h in betaln _(by Philipp Burckhardt)_
518524
- [`6b1c190`](https://github.com/stdlib-js/stdlib/commit/6b1c1902e586b2a2437f5b97f6abe4b4c780da92) - **fix:** use correct dependency in manifest.json _(by Philipp Burckhardt)_
519525
- [`b82a6a3`](https://github.com/stdlib-js/stdlib/commit/b82a6a3e079a541f151f4391e64f7a2242363a73) - **fix:** remove extra slash from include path _(by Philipp Burckhardt)_
520526
- [`77ede72`](https://github.com/stdlib-js/stdlib/commit/77ede72455000282d9ba9d2582f80f811a01add1) - **feat:** add `math/base/special/vercosf` [(#7418)](https://github.com/stdlib-js/stdlib/pull/7418) _(by Karan Anand)_

base/special/betaln/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include "stdlib/math/base/special/ln.h"
3434
#include "stdlib/constants/float64/ln_sqrt_two_pi.h"
3535
#include "stdlib/constants/float64/pinf.h"
36-
#include "stdlib//constants/float64/ninf.h"
36+
#include "stdlib/constants/float64/ninf.h"
3737
#include <stdint.h>
3838

3939
static const double ALGMCS[ 15 ] = {

base/special/binomcoef/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "stdlib/math/base/special/floor.h"
2121
#include "stdlib/math/base/special/gcd.h"
2222
#include "stdlib/constants/float64/pinf.h"
23-
#include "stdlib//constants/float64/max_safe_integer.h"
23+
#include "stdlib/constants/float64/max_safe_integer.h"
2424
#include <stdint.h>
2525

2626
/**

base/special/hyp2f1/manifest.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"@stdlib/math/base/special/abs",
4949
"@stdlib/math/base/special/pow",
5050
"@stdlib/constants/float64/pinf",
51-
"@stdlib/constants/float64/ninf",
5251
"@stdlib/constants/float64/nan"
5352
]
5453
},
@@ -74,7 +73,6 @@
7473
"@stdlib/math/base/special/abs",
7574
"@stdlib/math/base/special/pow",
7675
"@stdlib/constants/float64/pinf",
77-
"@stdlib/constants/float64/ninf",
7876
"@stdlib/constants/float64/nan"
7977
]
8078
},
@@ -100,7 +98,6 @@
10098
"@stdlib/math/base/special/abs",
10199
"@stdlib/math/base/special/pow",
102100
"@stdlib/constants/float64/pinf",
103-
"@stdlib/constants/float64/ninf",
104101
"@stdlib/constants/float64/nan"
105102
]
106103
}

0 commit comments

Comments
 (0)