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/.gitignore b/.gitignore
index 49b206b..4fdc97c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -101,6 +101,8 @@ docs/**/node_modules/
pids
*.pid
*.seed
+yarn.lock
+package-lock.json
# Typescript #
##############
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 39dc5f1..77077a2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,4 +2,187 @@
> Package changelog.
-See [GitHub Releases](https://github.com/stdlib-js/array-ones-like/releases) for the changelog.
\ No newline at end of file
+
+
+## Unreleased (2024-09-21)
+
+
+
+### Commits
+
+
+
+- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
+- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
+
+
+
+
+
+
+
+
+
+### Contributors
+
+A total of 2 people contributed to this release. Thank you to the following contributors:
+
+- Athan Reines
+- Philipp Burckhardt
+
+
+
+
+
+
+
+
+
+
+
+## 0.2.1 (2024-02-25)
+
+
+
+### Features
+
+- [`819d2e4`](https://github.com/stdlib-js/stdlib/commit/819d2e407146d4dcc17f8bab53b591b3d573f8a1) - add data type maps and replace use of overloads [(#1317)](https://github.com/stdlib-js/stdlib/pull/1317)
+
+
+
+
+
+
+
+### Commits
+
+
+
+- [`819d2e4`](https://github.com/stdlib-js/stdlib/commit/819d2e407146d4dcc17f8bab53b591b3d573f8a1) - **feat:** add data type maps and replace use of overloads [(#1317)](https://github.com/stdlib-js/stdlib/pull/1317) _(by Philipp Burckhardt, Athan Reines)_
+
+
+
+
+
+
+
+
+
+### Contributors
+
+A total of 2 people contributed to this release. Thank you to the following contributors:
+
+- Athan Reines
+- Philipp Burckhardt
+
+
+
+
+
+
+
+
+
+
+
+## 0.2.0 (2024-02-15)
+
+
+
+### Commits
+
+
+
+- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
+- [`e3fc2d4`](https://github.com/stdlib-js/stdlib/commit/e3fc2d48bf55690a3ead6cc37eed3472f34561c0) - **docs:** update links _(by Athan Reines)_
+- [`df3c9b3`](https://github.com/stdlib-js/stdlib/commit/df3c9b368d8a3dd7dd38f8768deb53c2a780c055) - **build:** remove tslint directives _(by Philipp Burckhardt)_
+
+
+
+
+
+
+
+
+
+### Contributors
+
+A total of 2 people contributed to this release. Thank you to the following contributors:
+
+- Athan Reines
+- Philipp Burckhardt
+
+
+
+
+
+
+
+
+
+
+
+## 0.1.0 (2023-09-24)
+
+
+
+### Features
+
+- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - update minimum TypeScript version
+
+
+
+
+
+
+
+### BREAKING CHANGES
+
+- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017): update minimum TypeScript version to 4.1
+
+ - To migrate, users should upgrade their TypeScript version to at least version 4.1.
+
+
+
+
+
+
+
+### Commits
+
+
+
+- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
+
+
+
+
+
+
+
+
+
+### Contributors
+
+A total of 1 person contributed to this release. Thank you to this contributor:
+
+- Philipp Burckhardt
+
+
+
+
+
+
+
+
+
+
+
+## 0.0.1 (2022-02-16)
+
+No changes reported for this release.
+
+
+
+
+
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index a44d7ac..147a89e 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -2,6 +2,7 @@
#
# Contributors listed in alphabetical order.
+Aayush Khanna <96649223+aayush0325@users.noreply.github.com>
Adarsh Palaskar
Aditya Sapra
AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com>
@@ -26,17 +27,20 @@ EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
Frank Kovacs
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
Gunj Joshi
+HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
Harshita Kalani
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
James Gelok
Jaysukh Makvana
+Jenish Thapa <141203631+jenish-thapa@users.noreply.github.com>
Jithin KS
Joel Mathew Koshy
Joey Reed
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
Joris Labie
Justin Dennison
+Kaif Mohd
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
Khaldon
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
@@ -46,11 +50,13 @@ Marcus Fantham
Matt Cochrane
Mihir Pandit <129577900+MSP20086@users.noreply.github.com>
Milan Raj
+Mohammad Kaif <98884589+Kaif987@users.noreply.github.com>
Momtchil Momtchev
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
@@ -63,11 +69,13 @@ 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>
Ryan Seal
Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com>
+SarthakPaandey <145528240+SarthakPaandey@users.noreply.github.com>
Seyyed Parsa Neshaei
Shashank Shekhar Singh
Shivam <11shivam00@gmail.com>
@@ -75,15 +83,17 @@ Shraddheya Shendre
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
Shubham Mishra
Sivam Das <100067002+Sivam2313@users.noreply.github.com>
-Snehil Shah <130062020+Snehil-Shah@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>
Tirtadwipa Manunggal
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
+Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
Utkarsh
Utkarsh Raj
+Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
Varad Gupta
Xiaochuan Ye
Yernar Yergaziyev
@@ -92,3 +102,4 @@ nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
orimiles5 <97595296+orimiles5@users.noreply.github.com>
rainn <88160429+AmCodesLame@users.noreply.github.com>
rei2hu
+yaswanth <116426380+yaswanthkosuru@users.noreply.github.com>
diff --git a/dist/index.js b/dist/index.js
index 10208b3..6f661e9 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -1,5 +1,19 @@
-"use strict";var u=function(e,r){return function(){return r||e((r={exports:{}}).exports,r),r.exports}};var i=u(function(g,t){
-var n=require('@stdlib/array-dtype/dist'),l=require('@stdlib/array-full/dist'),s=require('@stdlib/complex-float64-ctor/dist'),o=require('@stdlib/complex-float32-ctor/dist'),m=require('@stdlib/error-tools-fmtprodmsg/dist'),v=new s(1,0),p=new o(1,0);function f(e){var r,a;if(r=n(e),r===null)throw new TypeError(m('01B2f',e));return arguments.length>1&&(r=arguments[1]),r==="complex128"?a=v:r==="complex64"?a=p:a=1,l(e.length,a,r)}t.exports=f
-});var y=i();module.exports=y;
-/** @license Apache-2.0 */
+"use strict";var u=function(e,r){return function(){return r||e((r={exports:{}}).exports,r),r.exports}};var i=u(function(g,t){"use strict";var n=require("@stdlib/array-dtype"),l=require("@stdlib/array-full"),s=require("@stdlib/complex-float64-ctor"),o=require("@stdlib/complex-float32-ctor"),m=require("@stdlib/string-format"),v=new s(1,0),p=new o(1,0);function f(e){var r,a;if(r=n(e),r===null)throw new TypeError(m("invalid argument. First argument must be either an array, typed array, or complex typed array. Value: `%s`.",e));return arguments.length>1&&(r=arguments[1]),r==="complex128"?a=v:r==="complex64"?a=p:a=1,l(e.length,a,r)}t.exports=f});var y=i();module.exports=y;
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2022 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
//# sourceMappingURL=index.js.map
diff --git a/docs/repl.txt b/docs/repl.txt
index 6ec8be3..d67ed49 100644
--- a/docs/repl.txt
+++ b/docs/repl.txt
@@ -5,18 +5,18 @@
The function supports the following data types:
- - float64: double-precision floating-point numbers (IEEE 754)
- - float32: single-precision floating-point numbers (IEEE 754)
- - complex128: double-precision complex floating-point numbers
- - complex64: single-precision complex floating-point numbers
- - int32: 32-bit two's complement signed integers
- - uint32: 32-bit unsigned integers
- - int16: 16-bit two's complement signed integers
- - uint16: 16-bit unsigned integers
- - int8: 8-bit two's complement signed integers
- - uint8: 8-bit unsigned integers
- - uint8c: 8-bit unsigned integers clamped to 0-255
- - generic: generic JavaScript values
+ - float64: double-precision floating-point numbers (IEEE 754).
+ - float32: single-precision floating-point numbers (IEEE 754).
+ - complex128: double-precision complex floating-point numbers.
+ - complex64: single-precision complex floating-point numbers.
+ - int32: 32-bit two's complement signed integers.
+ - uint32: 32-bit unsigned integers.
+ - int16: 16-bit two's complement signed integers.
+ - uint16: 16-bit unsigned integers.
+ - int8: 8-bit two's complement signed integers.
+ - uint8: 8-bit unsigned integers.
+ - uint8c: 8-bit unsigned integers clamped to 0-255.
+ - generic: generic JavaScript values.
Parameters
----------
diff --git a/package.json b/package.json
index 17cba79..6d006ce 100644
--- a/package.json
+++ b/package.json
@@ -37,39 +37,39 @@
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
- "@stdlib/array-dtype": "^0.2.1",
+ "@stdlib/array-dtype": "^0.3.0",
"@stdlib/array-full": "^0.2.1",
- "@stdlib/complex-float32-ctor": "github:stdlib-js/complex-float32-ctor#main",
- "@stdlib/complex-float64-ctor": "github:stdlib-js/complex-float64-ctor#main",
- "@stdlib/string-format": "^0.2.1",
- "@stdlib/types": "^0.3.2",
- "@stdlib/error-tools-fmtprodmsg": "^0.2.1"
+ "@stdlib/complex-float32-ctor": "^0.0.2",
+ "@stdlib/complex-float64-ctor": "^0.0.3",
+ "@stdlib/string-format": "^0.2.2",
+ "@stdlib/types": "^0.4.1",
+ "@stdlib/error-tools-fmtprodmsg": "^0.2.2"
},
"devDependencies": {
- "@stdlib/array-complex128": "^0.2.1",
- "@stdlib/array-complex64": "^0.2.1",
- "@stdlib/array-dtypes": "^0.2.1",
- "@stdlib/array-float32": "^0.2.1",
- "@stdlib/array-float64": "^0.2.1",
- "@stdlib/array-int16": "^0.2.1",
- "@stdlib/array-int32": "^0.2.1",
- "@stdlib/array-int8": "^0.2.1",
- "@stdlib/array-uint16": "^0.2.1",
- "@stdlib/array-uint32": "^0.2.1",
- "@stdlib/array-uint8": "^0.2.1",
- "@stdlib/array-uint8c": "^0.2.1",
- "@stdlib/array-zeros": "^0.2.1",
- "@stdlib/assert-instance-of": "^0.2.1",
- "@stdlib/assert-is-array": "^0.2.1",
- "@stdlib/assert-is-typed-array": "^0.2.1",
- "@stdlib/assert-is-typed-array-like": "^0.2.1",
- "@stdlib/math-base-special-pow": "^0.2.1",
- "@stdlib/strided-base-reinterpret-complex128": "^0.2.1",
- "@stdlib/strided-base-reinterpret-complex64": "^0.2.0",
+ "@stdlib/array-complex128": "^0.3.0",
+ "@stdlib/array-complex64": "^0.3.0",
+ "@stdlib/array-dtypes": "^0.3.0",
+ "@stdlib/array-float32": "^0.2.2",
+ "@stdlib/array-float64": "^0.2.2",
+ "@stdlib/array-int16": "^0.2.2",
+ "@stdlib/array-int32": "^0.2.2",
+ "@stdlib/array-int8": "^0.2.2",
+ "@stdlib/array-uint16": "^0.2.2",
+ "@stdlib/array-uint32": "^0.2.2",
+ "@stdlib/array-uint8": "^0.2.2",
+ "@stdlib/array-uint8c": "^0.2.2",
+ "@stdlib/array-zeros": "^0.2.2",
+ "@stdlib/assert-instance-of": "^0.2.2",
+ "@stdlib/assert-is-array": "^0.2.2",
+ "@stdlib/assert-is-typed-array": "^0.2.2",
+ "@stdlib/assert-is-typed-array-like": "^0.2.2",
+ "@stdlib/math-base-special-pow": "^0.3.0",
+ "@stdlib/strided-base-reinterpret-complex128": "^0.2.2",
+ "@stdlib/strided-base-reinterpret-complex64": "^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",