Skip to content

Commit c0ffb80

Browse files
committed
Auto-generated commit
1 parent 5c8df7e commit c0ffb80

File tree

3 files changed

+65
-56
lines changed

3 files changed

+65
-56
lines changed

CHANGELOG.md

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

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-03-25)
7+
## Unreleased (2026-03-27)
88

99
<section class="features">
1010

@@ -725,6 +725,7 @@ A total of 90 issues were closed in this release:
725725

726726
<details>
727727

728+
- [`8448f5a`](https://github.com/stdlib-js/stdlib/commit/8448f5a44bad7e305d50ac9e92ba195bac863389) - **chore:** ensure consistent use of semicolons [(#11170)](https://github.com/stdlib-js/stdlib/pull/11170) _(by Philipp Burckhardt, Athan Reines)_
728729
- [`e81a8c0`](https://github.com/stdlib-js/stdlib/commit/e81a8c0c8501d4bc3e3b3843a86476a2e088a9d6) - **docs:** fix C examples [(#11134)](https://github.com/stdlib-js/stdlib/pull/11134) _(by anee3)_
729730
- [`cd99fef`](https://github.com/stdlib-js/stdlib/commit/cd99fef661e7a5f6e600ee81295ec4dbc8501187) - **docs:** fix C examples [(#11135)](https://github.com/stdlib-js/stdlib/pull/11135) _(by anee3)_
730731
- [`b20816f`](https://github.com/stdlib-js/stdlib/commit/b20816f0b727f9a365b0fd526092db9cd2ad75fc) - **docs:** fix incorrect return annotation [(#11128)](https://github.com/stdlib-js/stdlib/pull/11128) _(by anee3)_

LICENSE

Lines changed: 62 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -181,46 +181,15 @@ The library links against the following external libraries or contains
181181
implementations from the following external libraries, which have their own
182182
licenses:
183183

184-
* FDLIBM <http://www.netlib.org/fdlibm/>
184+
* FreeBSD <https://svnweb.freebsd.org/>
185185

186-
Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
186+
Copyright (C) 1993-2004 by Sun Microsystems, Inc. All rights reserved.
187187

188188
Developed at SunPro, a Sun Microsystems, Inc. business.
189189
Permission to use, copy, modify, and distribute this
190190
software is freely granted, provided that this notice
191191
is preserved.
192192

193-
* SpecialFunctions.jl <https://raw.githubusercontent.com/JuliaMath/
194-
SpecialFunctions.jl/02a173fbe24a61c4b392aec17a9764ac5727feb1/LICENSE>
195-
196-
The MIT License (MIT)
197-
198-
Copyright (c) 2017 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and others:
199-
200-
https://github.com/JuliaMath/SpecialFunctions.jl/graphs/contributors
201-
202-
Permission is hereby granted, free of charge, to any person obtaining a copy
203-
of this software and associated documentation files (the "Software"), to deal
204-
in the Software without restriction, including without limitation the rights
205-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
206-
copies of the Software, and to permit persons to whom the Software is
207-
furnished to do so, subject to the following conditions:
208-
209-
The above copyright notice and this permission notice shall be included in all
210-
copies or substantial portions of the Software.
211-
212-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
213-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
214-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
215-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
216-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
217-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
218-
SOFTWARE.
219-
220-
* FreeBSD <https://svnweb.freebsd.org/>
221-
222-
Copyright (C) 1993-2004 by Sun Microsystems, Inc. All rights reserved.
223-
224193
* Boost <http://www.boost.org/LICENSE_1_0.txt>
225194

226195
Boost Software License - Version 1.0 - August 17th, 2003
@@ -247,25 +216,6 @@ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
247216
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
248217
DEALINGS IN THE SOFTWARE.
249218

250-
* Cephes <http://www.netlib.org/cephes/readme>
251-
252-
Copyright (c) 1984-2000 Stephen L. Moshier
253-
254-
Some software in this archive may be from the book _Methods and Programs for
255-
Mathematical Functions_ (Prentice-Hall or Simon & Schuster International, 1989)
256-
or from the Cephes Mathematical Library, a commercial product. In either event,
257-
it is copyrighted by the author. What you see here may be used freely but it
258-
comes with no support or guarantee.
259-
260-
Stephen L. Moshier
261-
moshier@na-net.ornl.gov
262-
Apache License
263-
Version 2.0, January 2004
264-
http://www.apache.org/licenses/
265-
266-
Stephen L. Moshier
267-
moshier@na-net.ornl.gov
268-
269219
* Go <https://raw.githubusercontent.com/golang/go/master/LICENSE>
270220

271221
Copyright (c) 2009 The Go Authors. All rights reserved.
@@ -296,6 +246,29 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
296246
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
297247
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
298248

249+
* Cephes <http://www.netlib.org/cephes/readme>
250+
251+
Copyright (c) 1984-2000 Stephen L. Moshier
252+
253+
Some software in this archive may be from the book _Methods and Programs for
254+
Mathematical Functions_ (Prentice-Hall or Simon & Schuster International, 1989)
255+
or from the Cephes Mathematical Library, a commercial product. In either event,
256+
it is copyrighted by the author. What you see here may be used freely but it
257+
comes with no support or guarantee.
258+
259+
Stephen L. Moshier
260+
moshier@na-net.ornl.gov
261+
Apache License
262+
Version 2.0, January 2004
263+
http://www.apache.org/licenses/
264+
265+
Stephen L. Moshier
266+
moshier@na-net.ornl.gov
267+
268+
* FDLIBM <http://www.netlib.org/fdlibm/>
269+
270+
Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
271+
299272
* Faddeeva <http://ab-initio.mit.edu/wiki/index.php/Faddeeva_Package#License>
300273

301274
Copyright (c) 2012 Massachusetts Institute of Technology
@@ -319,9 +292,40 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
319292
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
320293
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
321294

322-
* SLATEC Common Mathematical Library <https://netlib.org/slatec/>
295+
* SpecialFunctions.jl <https://raw.githubusercontent.com/JuliaMath/
296+
SpecialFunctions.jl/02a173fbe24a61c4b392aec17a9764ac5727feb1/LICENSE>
323297

324-
Public domain.
298+
The MIT License (MIT)
299+
300+
Copyright (c) 2017 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and others:
301+
302+
https://github.com/JuliaMath/SpecialFunctions.jl/graphs/contributors
303+
304+
Permission is hereby granted, free of charge, to any person obtaining a copy
305+
of this software and associated documentation files (the "Software"), to deal
306+
in the Software without restriction, including without limitation the rights
307+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
308+
copies of the Software, and to permit persons to whom the Software is
309+
furnished to do so, subject to the following conditions:
310+
311+
The above copyright notice and this permission notice shall be included in all
312+
copies or substantial portions of the Software.
313+
314+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
315+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
316+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
317+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
318+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
319+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
320+
SOFTWARE.
321+
322+
Developed at SunPro, a Sun Microsystems, Inc. business.
323+
Permission to use, copy, modify, and distribute this
324+
software is freely granted, provided that this notice
325+
is preserved.
326+
Apache License
327+
Version 2.0, January 2004
328+
http://www.apache.org/licenses/
325329

326330
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
327331
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
@@ -334,3 +338,7 @@ DEALINGS IN THE SOFTWARE.
334338
Version 2.0, January 2004
335339
http://www.apache.org/licenses/
336340

341+
* SLATEC Common Mathematical Library <https://netlib.org/slatec/>
342+
343+
Public domain.
344+

base/special/erfcx/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
#include "stdlib/math/base/special/erfcx.h"
2020
#include "stdlib/math/base/napi/unary.h"
2121

22-
STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_erfcx );
22+
STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_erfcx )

0 commit comments

Comments
 (0)