Skip to content

Commit dffec9f

Browse files
committed
Auto-generated commit
1 parent 006b545 commit dffec9f

4 files changed

Lines changed: 94 additions & 5 deletions

File tree

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

CHANGELOG.md

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

7-
## Unreleased (2025-08-22)
7+
## Unreleased (2025-09-13)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`86edcb5`](https://github.com/stdlib-js/stdlib/commit/86edcb559be453cb7d1156076bfc940a37a39af0) - **chore:** add structured package data for packages in `math/base/special` [(#8054)](https://github.com/stdlib-js/stdlib/pull/8054) _(by Gunj Joshi, Athan Reines)_
1516
- [`44010b3`](https://github.com/stdlib-js/stdlib/commit/44010b3e8509ab22c32750fa125a1155f5fd8995) - **docs:** fix return annotation values _(by Philipp Burckhardt)_
1617
- [`630ddb7`](https://github.com/stdlib-js/stdlib/commit/630ddb777824b5f6e501fda6dadf4ce41dccb964) - **test:** replace equal with strictEqual _(by Karan Anand)_
1718
- [`a1e230f`](https://github.com/stdlib-js/stdlib/commit/a1e230f29297caa89880e9c194c615a0400fb7bc) - **chore:** clean up cppcheck-suppress comments _(by Karan Anand)_
@@ -31,9 +32,10 @@
3132

3233
### Contributors
3334

34-
A total of 4 people contributed to this release. Thank you to the following contributors:
35+
A total of 5 people contributed to this release. Thank you to the following contributors:
3536

3637
- Athan Reines
38+
- Gunj Joshi
3739
- Harsh
3840
- Karan Anand
3941
- Philipp Burckhardt

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <brunofenzl@gmail.com>
4242
Bryan Elee <rxbryn@gmail.com>
4343
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
4444
Christopher Dambamuromo <chridam@gmail.com>
45+
DUDHAT HEMIL PRAVINKUMAR <138382078+Hemil36@users.noreply.github.com>
4546
Dan Rose <danoftheroses@gmail.com>
4647
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4748
Daniel Killenberger <daniel.killenberger@gmail.com>
@@ -65,6 +66,7 @@ Frank Kovacs <fran70kk@gmail.com>
6566
GK Bishnoi <gkishan1kyt@gmail.com>
6667
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
6768
Gaurav <gaurav70380@gmail.com>
69+
Gaurav Kaushik <144526331+Gauravkaushik-1206@users.noreply.github.com>
6870
Gautam Kaushik <162317291+Kaushikgtm@users.noreply.github.com>
6971
Gautam sharma <gautamkrishnasharma1@gmail.com>
7072
GeoDaoyu <geodaoyu@foxmail.com>
@@ -179,6 +181,7 @@ Saurabh Singh <saurabhsraghuvanshi@gmail.com>
179181
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
180182
Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
181183
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
184+
Shaswata Panda <106397517+shaswata-26@users.noreply.github.com>
182185
Shivam Ahir <11shivam00@gmail.com>
183186
Shivansh <114570926+shiv343@users.noreply.github.com>
184187
Shraddheya Shendre <shendreshraddheya@gmail.com>
@@ -199,6 +202,7 @@ Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
199202
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
200203
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
201204
Tushar Bhardwaj <155543597+TusharBhardwaj441@users.noreply.github.com>
205+
Tyson Cung <45380903+tysoncung@users.noreply.github.com>
202206
Uday Kakade <141299403+udaykakade25@users.noreply.github.com>
203207
Ujjwal Kirti <64329707+ujjwalkirti@users.noreply.github.com>
204208
Utkarsh <http://utkarsh11105@gmail.com>

package.json

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,84 @@
100100
"special",
101101
"number"
102102
],
103+
"__stdlib__": {
104+
"scaffold": {
105+
"$schema": "math/base@v1.0",
106+
"base_alias": "erfcinv",
107+
"alias": "erfcinv",
108+
"pkg_desc": "evaluate the inverse complementary error function for a double-precision floating-point number",
109+
"desc": "evaluates the inverse complementary error function for a double-precision floating-point number",
110+
"short_desc": "inverse complementary error function",
111+
"parameters": [
112+
{
113+
"name": "x",
114+
"desc": "input value",
115+
"type": {
116+
"javascript": "number",
117+
"jsdoc": "number",
118+
"c": "double",
119+
"dtype": "float64"
120+
},
121+
"domain": [
122+
{
123+
"min": 0,
124+
"max": 2
125+
}
126+
],
127+
"rand": {
128+
"prng": "random/base/uniform",
129+
"parameters": [
130+
0.1,
131+
1.8
132+
]
133+
},
134+
"example_values": [
135+
0.041,
136+
1.372,
137+
0.885,
138+
1.743,
139+
0.219,
140+
1.948,
141+
0.637,
142+
1.156,
143+
0.302,
144+
1.821,
145+
0.517,
146+
1.064,
147+
0.771,
148+
0.126,
149+
1.593,
150+
0.948,
151+
1.287,
152+
0.359,
153+
1.912,
154+
0.684
155+
]
156+
}
157+
],
158+
"output_policy": "real_floating_point_and_generic",
159+
"returns": {
160+
"desc": "function value",
161+
"type": {
162+
"javascript": "number",
163+
"jsdoc": "number",
164+
"c": "double",
165+
"dtype": "float64"
166+
}
167+
},
168+
"keywords": [
169+
"erf",
170+
"erfc",
171+
"erfinv",
172+
"erfcinv",
173+
"inverse",
174+
"complementary",
175+
"error",
176+
"function"
177+
],
178+
"extra_keywords": []
179+
}
180+
},
103181
"funding": {
104182
"type": "opencollective",
105183
"url": "https://opencollective.com/stdlib"

0 commit comments

Comments
 (0)