diff --git a/.gitattributes b/.gitattributes
index 10a16e6..1c88e69 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -40,10 +40,27 @@
*.mov binary
# Override what is considered "vendored" by GitHub's linguist:
-/deps/** linguist-vendored=false
-/lib/node_modules/** linguist-vendored=false linguist-generated=false
-test/fixtures/** linguist-vendored=false
-tools/** linguist-vendored=false
+/lib/node_modules/** -linguist-vendored -linguist-generated
-# Override what is considered "documentation" by GitHub's linguist:
-examples/** linguist-documentation=false
+# Configure directories which should *not* be included in GitHub language statistics:
+/deps/** linguist-vendored
+/dist/** linguist-generated
+/workshops/** linguist-vendored
+
+benchmark/** linguist-vendored
+docs/* linguist-documentation
+etc/** linguist-vendored
+examples/** linguist-documentation
+scripts/** linguist-vendored
+test/** linguist-vendored
+tools/** linguist-vendored
+
+# Configure files which should *not* be included in GitHub language statistics:
+Makefile linguist-vendored
+*.mk linguist-vendored
+*.jl linguist-vendored
+*.py linguist-vendored
+*.R linguist-vendored
+
+# Configure files which should be included in GitHub language statistics:
+docs/types/*.d.ts -linguist-documentation
diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml
index f92a6c5..f4575e9 100644
--- a/.github/workflows/productionize.yml
+++ b/.github/workflows/productionize.yml
@@ -94,8 +94,8 @@ jobs:
node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );"
fi
- # Configure git:
- - name: 'Configure git'
+ # Configure Git:
+ - name: 'Configure Git'
run: |
git config --local user.email "noreply@stdlib.io"
git config --local user.name "stdlib-bot"
@@ -191,8 +191,8 @@ jobs:
# Pin action to full length commit SHA
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- # Configure git:
- - name: 'Configure git'
+ # Configure Git:
+ - name: 'Configure Git'
run: |
git config --local user.email "noreply@stdlib.io"
git config --local user.name "stdlib-bot"
@@ -366,8 +366,8 @@ jobs:
# Pin action to full length commit SHA
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- # Configure git:
- - name: 'Configure git'
+ # Configure Git:
+ - name: 'Configure Git'
run: |
git config --local user.email "noreply@stdlib.io"
git config --local user.name "stdlib-bot"
@@ -539,8 +539,8 @@ jobs:
# Pin action to full length commit SHA
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- # Configure git:
- - name: 'Configure git'
+ # Configure Git:
+ - name: 'Configure Git'
run: |
git config --local user.email "noreply@stdlib.io"
git config --local user.name "stdlib-bot"
@@ -735,8 +735,8 @@ jobs:
echo "bump=true" >> $GITHUB_OUTPUT
fi
- # Configure git:
- - name: 'Configure git'
+ # Configure Git:
+ - name: 'Configure Git'
if: steps.check-if-bump.outputs.bump
run: |
git config --local user.email "noreply@stdlib.io"
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index ad3a3e0..2888b88 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -72,8 +72,8 @@ jobs:
node-version: 20
timeout-minutes: 5
- # Configure git:
- - name: 'Configure git'
+ # Configure Git:
+ - name: 'Configure Git'
run: |
git config --local user.email "noreply@stdlib.io"
git config --local user.name "stdlib-bot"
@@ -94,6 +94,10 @@ jobs:
# Replace branch in README.md link definitions for badges with the new version:
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g"
+ # Rewrite CHANGELOG.md to replace "Unreleased" with the new version:
+ sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md
+ sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md
+
# Create a new commit and tag:
git add package.json README.md
git commit -m "Release v${NEW_VERSION}"
@@ -202,7 +206,7 @@ jobs:
# Publish package to npm:
- name: 'Publish package to npm'
# Pin action to full length commit SHA
- uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
+ uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
with:
token: ${{ secrets.NPM_TOKEN }}
access: public
diff --git a/.npmrc b/.npmrc
index 5af9067..58dbd10 100644
--- a/.npmrc
+++ b/.npmrc
@@ -27,5 +27,5 @@ shrinkwrap = false
# Disable automatically "saving" dependencies on install:
save = false
-# Generate provenance metadata:
-provenance = true
+# Do not generate provenance metadata:
+provenance = false
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7af88c9..0006202 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,4 +2,187 @@
> Package changelog.
-See [GitHub Releases](https://github.com/stdlib-js/stats-base-dists-binomial-quantile/releases) for the changelog.
\ No newline at end of file
+
+
+## 0.2.2 (2024-07-28)
+
+
+
+### Commits
+
+
+
+- [`41d41e9`](https://github.com/stdlib-js/stdlib/commit/41d41e959b4eaad3c631e6898e3144a4015a5458) - **test:** include trailing newlines in Julia-generated JSON fixtures _(by Philipp Burckhardt)_
+- [`9ed7d0e`](https://github.com/stdlib-js/stdlib/commit/9ed7d0e7d57edb5ad0dfb65c944bed87d475cbf3) - **chore:** add missing trailing newlines _(by Philipp Burckhardt)_
+
+
+
+
+
+
+
+
+
+### Contributors
+
+A total of 1 person contributed to this release. Thank you to this contributor:
+
+- Philipp Burckhardt
+
+
+
+
+
+
+
+
+
+
+
+## 0.2.1 (2024-02-24)
+
+No changes reported for this release.
+
+
+
+
+
+
+
+## 0.2.0 (2024-02-14)
+
+No changes reported for this release.
+
+
+
+
+
+
+
+## 0.1.0 (2023-09-24)
+
+
+
+### Features
+
+- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864) - update minimum TypeScript version
+
+
+
+
+
+
+
+### BREAKING CHANGES
+
+- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864): update minimum TypeScript version
+- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864): update minimum TypeScript version to 4.1
+
+ - To migrate, users should upgrade their TypeScript version to at least version 4.1.
+
+
+
+
+
+
+
+### Commits
+
+
+
+- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
+- [`d5fa8e8`](https://github.com/stdlib-js/stdlib/commit/d5fa8e8a6267a837a25a7027e9fe3e847bc2d1c5) - **test:** use strictEqual checks _(by Philipp Burckhardt)_
+- [`37f032d`](https://github.com/stdlib-js/stdlib/commit/37f032d4a571f667ea99f6f52f60b5d736c627f3) - **docs:** render equations via math code blocks _(by Philipp Burckhardt)_
+
+
+
+
+
+
+
+
+
+### Contributors
+
+A total of 1 person contributed to this release. Thank you to this contributor:
+
+- Philipp Burckhardt
+
+
+
+
+
+
+
+
+
+
+
+## 0.0.7 (2022-07-08)
+
+No changes reported for this release.
+
+
+
+
+
+
+
+## 0.0.6 (2022-02-16)
+
+No changes reported for this release.
+
+
+
+
+
+
+
+## 0.0.5 (2021-08-22)
+
+No changes reported for this release.
+
+
+
+
+
+
+
+## 0.0.4 (2021-07-07)
+
+No changes reported for this release.
+
+
+
+
+
+
+
+## 0.0.3 (2021-06-28)
+
+No changes reported for this release.
+
+
+
+
+
+
+
+## 0.0.2 (2021-06-16)
+
+No changes reported for this release.
+
+
+
+
+
+
+
+## 0.0.1 (2021-06-15)
+
+No changes reported for this release.
+
+
+
+
+
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 4500383..26a1c46 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -5,6 +5,7 @@
Adarsh Palaskar
Aditya Sapra
AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com>
+Aleksandr <112382387+alextes90@users.noreply.github.com>
Ali Salesi
Aman Bhansali
Amit Jimiwal
@@ -18,6 +19,7 @@ Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
Christopher Dambamuromo
Dan Rose
Daniel Killenberger
+Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
Dominik Moritz
Dorrin Sotoudeh
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
@@ -25,6 +27,7 @@ Frank Kovacs
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
Gunj Joshi
Harshita Kalani
+Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
James Gelok
Jaysukh Makvana
@@ -48,6 +51,7 @@ Muhammad Haris
Naresh Jagadeesan
NightKnight
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
+Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com>
Ognjen Jevremović
Oneday12323 <107678750+Oneday12323@users.noreply.github.com>
Philipp Burckhardt
@@ -60,6 +64,7 @@ Pushpendra Chandravanshi
Raunak Kumar Gupta
Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
Ricky Reusser
+Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
Robert Gislason
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
Rutam <138517416+performant23@users.noreply.github.com>
@@ -69,8 +74,11 @@ Seyyed Parsa Neshaei
Shashank Shekhar Singh
Shivam <11shivam00@gmail.com>
Shraddheya Shendre
+Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
Shubham Mishra
-Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
+Sivam Das <100067002+Sivam2313@users.noreply.github.com>
+Snehil Shah
+Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
Spandan Barve
Stephannie Jiménez Gacha
Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com>
@@ -79,8 +87,10 @@ Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
Utkarsh
Utkarsh Raj
Varad Gupta
+Xiaochuan Ye
Yernar Yergaziyev
naveen
nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
orimiles5 <97595296+orimiles5@users.noreply.github.com>
+rainn <88160429+AmCodesLame@users.noreply.github.com>
rei2hu
diff --git a/README.md b/README.md
index f74e746..1219f50 100644
--- a/README.md
+++ b/README.md
@@ -235,8 +235,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-binomial-quantile.svg
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-binomial-quantile
-[test-image]: https://github.com/stdlib-js/stats-base-dists-binomial-quantile/actions/workflows/test.yml/badge.svg?branch=main
-[test-url]: https://github.com/stdlib-js/stats-base-dists-binomial-quantile/actions/workflows/test.yml?query=branch:main
+[test-image]: https://github.com/stdlib-js/stats-base-dists-binomial-quantile/actions/workflows/test.yml/badge.svg?branch=v0.2.2
+[test-url]: https://github.com/stdlib-js/stats-base-dists-binomial-quantile/actions/workflows/test.yml?query=branch:v0.2.2
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-binomial-quantile/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-binomial-quantile?branch=main
diff --git a/package.json b/package.json
index f89ddc9..352a4c4 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@stdlib/stats-base-dists-binomial-quantile",
- "version": "0.2.1",
+ "version": "0.2.2",
"description": "Binomial distribution quantile function.",
"license": "Apache-2.0",
"author": {
@@ -37,26 +37,26 @@
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
- "@stdlib/constants-float64-pinf": "^0.2.1",
- "@stdlib/constants-float64-sqrt-two": "^0.2.1",
- "@stdlib/math-base-assert-is-nan": "^0.2.1",
- "@stdlib/math-base-assert-is-nonnegative-integer": "^0.1.2",
- "@stdlib/math-base-special-erfcinv": "^0.2.2",
- "@stdlib/math-base-special-round": "^0.2.1",
- "@stdlib/math-base-special-sqrt": "^0.2.1",
+ "@stdlib/constants-float64-pinf": "^0.2.2",
+ "@stdlib/constants-float64-sqrt-two": "^0.2.2",
+ "@stdlib/math-base-assert-is-nan": "^0.2.2",
+ "@stdlib/math-base-assert-is-nonnegative-integer": "^0.2.1",
+ "@stdlib/math-base-special-erfcinv": "^0.2.3",
+ "@stdlib/math-base-special-round": "^0.3.0",
+ "@stdlib/math-base-special-sqrt": "^0.2.2",
"@stdlib/stats-base-dists-binomial-cdf": "^0.2.1",
- "@stdlib/stats-base-dists-degenerate-quantile": "^0.2.1",
- "@stdlib/utils-constant-function": "^0.2.1",
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1"
+ "@stdlib/stats-base-dists-degenerate-quantile": "^0.2.2",
+ "@stdlib/utils-constant-function": "^0.2.2",
+ "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2"
},
"devDependencies": {
- "@stdlib/constants-float64-ninf": "^0.2.1",
- "@stdlib/math-base-special-ceil": "^0.2.1",
+ "@stdlib/constants-float64-ninf": "^0.2.2",
+ "@stdlib/math-base-special-ceil": "^0.2.2",
"@stdlib/random-base-randu": "^0.2.1",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
"istanbul": "^0.4.1",
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
- "@stdlib/bench-harness": "^0.2.1"
+ "@stdlib/bench-harness": "^0.2.2"
},
"engines": {
"node": ">=0.10.0",