From dda4d55510dcd0c9549e3a1e71254d9dc8447b33 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 28 Jul 2024 20:25:19 +0000 Subject: [PATCH] Release v0.3.0 --- .gitattributes | 29 +- .github/workflows/publish.yml | 11 +- .github/workflows/test.yml | 1 - .github/workflows/test_coverage.yml | 1 - .github/workflows/test_install.yml | 1 - .npmrc | 4 +- CHANGELOG.md | 472 +++++++++++++++++++++++++++- CONTRIBUTORS | 12 +- README.md | 4 +- package.json | 24 +- 10 files changed, 528 insertions(+), 31 deletions(-) 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/publish.yml b/.github/workflows/publish.yml index 3eec50e..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 @@ -218,7 +222,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5051e88..d1492c6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -95,6 +95,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index f4eda1e..2bcf0cd 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -119,7 +119,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index e871c4e..1cf896d 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -81,6 +81,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() 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 955077f..716c373 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,4 +2,474 @@ > Package changelog. -See [GitHub Releases](https://github.com/stdlib-js/math-base-napi/releases) for the changelog. \ No newline at end of file +
+ +## 0.3.0 (2024-07-28) + +
+ +### Packages + +
+ +#### [@stdlib/math/base/napi](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi) + +
+ +
+ +##### Features + +- [`c5b26dc`](https://github.com/stdlib-js/stdlib/commit/c5b26dc3239d86e7708a7e47e317768489147e4f) - add Node-API macros for binary functions + +
+ + + +
+ +##### Bug Fixes + +- [`cf3f92e`](https://github.com/stdlib-js/stdlib/commit/cf3f92eddd20ec1a4106c8a34f7d7705a9a99dbc) - update include paths + +
+ + + +
+ +
+ + + +
+ +#### [@stdlib/math/base/napi/ternary](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/ternary) + +
+ +
+ +##### Features + +- [`74f3c08`](https://github.com/stdlib-js/stdlib/commit/74f3c08113fa7555d9010d3cb814f7a8ea7ea47e) - add `dii_d` in `math/base/napi/ternary` [(#2546)](https://github.com/stdlib-js/stdlib/pull/2546) + +
+ + + +
+ +
+ + + +
+ +#### [@stdlib/math/base/napi/unary](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/unary) + +
+ +
+ +##### Bug Fixes + +- [`cf3f92e`](https://github.com/stdlib-js/stdlib/commit/cf3f92eddd20ec1a4106c8a34f7d7705a9a99dbc) - update include paths + +
+ + + +
+ +
+ + + +
+ + + +
+ +### Contributors + +A total of 4 people contributed to this release. Thank you to the following contributors: + +- Aman Bhansali +- Athan Reines +- Gunj Joshi +- Pranav + +
+ + + +
+ +### Commits + +
+ +- [`8908bda`](https://github.com/stdlib-js/stdlib/commit/8908bda11588f80edf375466ae9e84a3d70cf7d3) - **refactor:** update paths _(by Athan Reines)_ +- [`ad760a9`](https://github.com/stdlib-js/stdlib/commit/ad760a922086631226d8f759a0d467c707fbc0fb) - **refactor:** update paths _(by Athan Reines)_ +- [`74f3c08`](https://github.com/stdlib-js/stdlib/commit/74f3c08113fa7555d9010d3cb814f7a8ea7ea47e) - **feat:** add `dii_d` in `math/base/napi/ternary` [(#2546)](https://github.com/stdlib-js/stdlib/pull/2546) _(by Gunj Joshi, Athan Reines)_ +- [`cf3f92e`](https://github.com/stdlib-js/stdlib/commit/cf3f92eddd20ec1a4106c8a34f7d7705a9a99dbc) - **fix:** update include paths _(by Athan Reines)_ +- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_ +- [`c5b26dc`](https://github.com/stdlib-js/stdlib/commit/c5b26dc3239d86e7708a7e47e317768489147e4f) - **feat:** add Node-API macros for binary functions _(by Aman Bhansali, Pranav, Athan Reines)_ + +
+ +
+ + + +
+ + + +## 0.2.1 (2024-02-24) + +
+ +### Packages + +
+ + + +
+ +### Commits + +
+ +
+ +
+ + + +## 0.2.0 (2024-02-14) + +
+ +### Packages + +
+ +#### [@stdlib/math/base/napi](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi) + +
+ +
+ +##### Features + +- [`783804d`](https://github.com/stdlib-js/stdlib/commit/783804dbc9b3899c5227c5593e0ca1e8a6a9f195) - update namespace TypeScript declarations [(#1170)](https://github.com/stdlib-js/stdlib/pull/1170) +- [`ee1f47b`](https://github.com/stdlib-js/stdlib/commit/ee1f47bbc60d37f220ec8c4093f034d47f9bb389) - add `quinary` to namespace +- [`2078b9d`](https://github.com/stdlib-js/stdlib/commit/2078b9d221b478a5fe07ba981584fd03ddac7f13) - add `quaternary` to namespace + +
+ + + +
+ +
+ + + +
+ +#### [@stdlib/math/base/napi/quaternary](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/quaternary) + +
+ +
+ +##### Features + +- [`0318f32`](https://github.com/stdlib-js/stdlib/commit/0318f3257e411f9d9179b54b4499ffadf66c14f6) - add `math/base/napi/quaternary` + +
+ + + +
+ +
+ + + +
+ +#### [@stdlib/math/base/napi/quinary](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/quinary) + +
+ +
+ +##### Features + +- [`f82185a`](https://github.com/stdlib-js/stdlib/commit/f82185a87a510d455c75126d1208679a30d3de55) - add `math/base/napi/quinary` + +
+ + + +
+ +
+ + + +
+ +#### [@stdlib/math/base/napi/ternary](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/ternary) + +
+ +No changes reported for this release.
+ +
+ + + +
+ +#### [@stdlib/math/base/napi/unary](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/unary) + +
+ +No changes reported for this release.
+ +
+ + + +
+ + + +
+ +### Contributors + +A total of 3 people contributed to this release. Thank you to the following contributors: + +- Athan Reines +- Athan Reines +- Philipp Burckhardt + +
+ + + +
+ +### Commits + +
+ +- [`783804d`](https://github.com/stdlib-js/stdlib/commit/783804dbc9b3899c5227c5593e0ca1e8a6a9f195) - **feat:** update namespace TypeScript declarations [(#1170)](https://github.com/stdlib-js/stdlib/pull/1170) _(by stdlib-bot, Athan Reines)_ +- [`1b31b43`](https://github.com/stdlib-js/stdlib/commit/1b31b437442c7d861aadf0e5ee00bb86cc191982) - **docs:** update namespace table of contents [(#1138)](https://github.com/stdlib-js/stdlib/pull/1138) _(by stdlib-bot, Athan Reines)_ +- [`ee1f47b`](https://github.com/stdlib-js/stdlib/commit/ee1f47bbc60d37f220ec8c4093f034d47f9bb389) - **feat:** add `quinary` to namespace _(by Athan Reines)_ +- [`f82185a`](https://github.com/stdlib-js/stdlib/commit/f82185a87a510d455c75126d1208679a30d3de55) - **feat:** add `math/base/napi/quinary` _(by Athan Reines)_ +- [`bfadb4e`](https://github.com/stdlib-js/stdlib/commit/bfadb4ec68f961e8a87e2f1ea809d9d83e26ff5b) - **docs:** fix missing period _(by Athan Reines)_ +- [`2078b9d`](https://github.com/stdlib-js/stdlib/commit/2078b9d221b478a5fe07ba981584fd03ddac7f13) - **feat:** add `quaternary` to namespace _(by Athan Reines)_ +- [`0318f32`](https://github.com/stdlib-js/stdlib/commit/0318f3257e411f9d9179b54b4499ffadf66c14f6) - **feat:** add `math/base/napi/quaternary` _(by Athan Reines)_ +- [`9502ed2`](https://github.com/stdlib-js/stdlib/commit/9502ed27e2853e312c556a48bdd7775095e66709) - **build:** replace tslint directive with eslint equivalent _(by Philipp Burckhardt)_ +- [`46d049b`](https://github.com/stdlib-js/stdlib/commit/46d049b5d38f9ef6e426d6a517ac8925c94d7642) - **build:** replace tslint directive _(by Philipp Burckhardt)_ +- [`714b339`](https://github.com/stdlib-js/stdlib/commit/714b3397c542f1caef3e9f91f65dbcaf0fec9afe) - **docs:** update links _(by Athan Reines)_ +- [`d73bbf4`](https://github.com/stdlib-js/stdlib/commit/d73bbf43d222f935085f8ecf7526e5f57835f74e) - **build:** replace lint directives _(by Philipp Burckhardt)_ + +
+ +
+ + + +## 0.1.0 (2023-09-24) + +
+ +### Packages + +
+ +#### [@stdlib/math/base/napi](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi) + +
+ +
+ +##### Features + +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9) - update minimum TypeScript version +- [`5e64296`](https://github.com/stdlib-js/stdlib/commit/5e6429650b779703f2a97f3f0d6d6059645f18a4) - add native addon to `cflipsign` [(#990)](https://github.com/stdlib-js/stdlib/pull/990) +- [`1014c3a`](https://github.com/stdlib-js/stdlib/commit/1014c3ab29373e70ab8eb669fb0481c8767e7670) - add Node-API macros for binary functions [(#969)](https://github.com/stdlib-js/stdlib/pull/969) + +
+ + + +
+ +##### BREAKING CHANGES + +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version to 4.1 + + - To migrate, users should upgrade their TypeScript version to at least version 4.1. + +
+ + + +
+ +
+ + + +
+ +#### [@stdlib/math/base/napi/ternary](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/ternary) + +
+ +
+ +##### Features + +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9) - update minimum TypeScript version + +
+ + + +
+ +##### BREAKING CHANGES + +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version to 4.1 + + - To migrate, users should upgrade their TypeScript version to at least version 4.1. + +
+ + + +
+ +
+ + + +
+ +#### [@stdlib/math/base/napi/unary](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/unary) + +
+ +
+ +##### Features + +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9) - update minimum TypeScript version + +
+ + + +
+ +##### BREAKING CHANGES + +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version to 4.1 + + - To migrate, users should upgrade their TypeScript version to at least version 4.1. + +
+ + + +
+ +
+ + + +
+ + + +
+ +### BREAKING CHANGES + +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version to 4.1 + + - To migrate, users should upgrade their TypeScript version to at least version 4.1. + +
+ + + +
+ +### Contributors + +A total of 3 people contributed to this release. Thank you to the following contributors: + +- Athan Reines +- Philipp Burckhardt +- Stephannie Jiménez Gacha + +
+ + + +
+ +### Commits + +
+ +- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_ +- [`b734544`](https://github.com/stdlib-js/stdlib/commit/b734544a52783cb7f5cf1115f4355cabe46d0abe) - **refactor:** use strictEqual checks _(by Philipp Burckhardt)_ +- [`5e64296`](https://github.com/stdlib-js/stdlib/commit/5e6429650b779703f2a97f3f0d6d6059645f18a4) - **feat:** add native addon to `cflipsign` [(#990)](https://github.com/stdlib-js/stdlib/pull/990) _(by Stephannie Jiménez Gacha, Athan Reines)_ +- [`1014c3a`](https://github.com/stdlib-js/stdlib/commit/1014c3ab29373e70ab8eb669fb0481c8767e7670) - **feat:** add Node-API macros for binary functions [(#969)](https://github.com/stdlib-js/stdlib/pull/969) _(by Stephannie Jiménez Gacha, Athan Reines)_ + +
+ +
+ + + +## 0.0.1 (2022-02-16) + +
+ +### Packages + +
+ + + +
+ +### Commits + +
+ +
+ +
+ + + 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 7ef7270..a7f27f0 100644 --- a/README.md +++ b/README.md @@ -148,8 +148,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors]. [npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-napi.svg [npm-url]: https://npmjs.org/package/@stdlib/math-base-napi -[test-image]: https://github.com/stdlib-js/math-base-napi/actions/workflows/test.yml/badge.svg?branch=main -[test-url]: https://github.com/stdlib-js/math-base-napi/actions/workflows/test.yml?query=branch:main +[test-image]: https://github.com/stdlib-js/math-base-napi/actions/workflows/test.yml/badge.svg?branch=v0.3.0 +[test-url]: https://github.com/stdlib-js/math-base-napi/actions/workflows/test.yml?query=branch:v0.3.0 [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-napi/main.svg [coverage-url]: https://codecov.io/github/stdlib-js/math-base-napi?branch=main diff --git a/package.json b/package.json index a306660..f91fccf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stdlib/math-base-napi", - "version": "0.2.1", + "version": "0.3.0", "description": "C APIs for registering a Node-API module exporting interfaces.", "license": "Apache-2.0", "author": { @@ -36,22 +36,22 @@ "url": "https://github.com/stdlib-js/stdlib/issues" }, "dependencies": { - "@stdlib/math-base-napi-binary": "^0.2.1", - "@stdlib/math-base-napi-quaternary": "^0.2.1", - "@stdlib/math-base-napi-quinary": "^0.2.1", - "@stdlib/math-base-napi-ternary": "^0.2.1", - "@stdlib/math-base-napi-unary": "^0.2.1", - "@stdlib/utils-define-read-only-property": "^0.2.1" + "@stdlib/math-base-napi-binary": "^0.3.0", + "@stdlib/math-base-napi-quaternary": "^0.2.2", + "@stdlib/math-base-napi-quinary": "^0.2.2", + "@stdlib/math-base-napi-ternary": "^0.3.0", + "@stdlib/math-base-napi-unary": "^0.2.3", + "@stdlib/utils-define-read-only-property": "^0.2.2" }, "devDependencies": { - "@stdlib/assert-is-browser": "^0.2.1", - "@stdlib/math-base-assert-is-nan": "^0.2.1", - "@stdlib/utils-keys": "^0.2.1", - "@stdlib/utils-try-require": "^0.2.1", + "@stdlib/assert-is-browser": "^0.2.2", + "@stdlib/math-base-assert-is-nan": "^0.2.2", + "@stdlib/utils-keys": "^0.2.2", + "@stdlib/utils-try-require": "^0.2.2", "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",