Skip to content

Commit b1eb0f1

Browse files
committed
Release v0.3.0
1 parent 2163e4b commit b1eb0f1

File tree

8 files changed

+138
-50
lines changed

8 files changed

+138
-50
lines changed

.github/workflows/productionize.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ jobs:
9494
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 ) );"
9595
fi
9696
97-
# Configure git:
98-
- name: 'Configure git'
97+
# Configure Git:
98+
- name: 'Configure Git'
9999
run: |
100100
git config --local user.email "noreply@stdlib.io"
101101
git config --local user.name "stdlib-bot"
@@ -191,8 +191,8 @@ jobs:
191191
# Pin action to full length commit SHA
192192
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
193193

194-
# Configure git:
195-
- name: 'Configure git'
194+
# Configure Git:
195+
- name: 'Configure Git'
196196
run: |
197197
git config --local user.email "noreply@stdlib.io"
198198
git config --local user.name "stdlib-bot"
@@ -366,8 +366,8 @@ jobs:
366366
# Pin action to full length commit SHA
367367
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
368368

369-
# Configure git:
370-
- name: 'Configure git'
369+
# Configure Git:
370+
- name: 'Configure Git'
371371
run: |
372372
git config --local user.email "noreply@stdlib.io"
373373
git config --local user.name "stdlib-bot"
@@ -539,8 +539,8 @@ jobs:
539539
# Pin action to full length commit SHA
540540
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
541541

542-
# Configure git:
543-
- name: 'Configure git'
542+
# Configure Git:
543+
- name: 'Configure Git'
544544
run: |
545545
git config --local user.email "noreply@stdlib.io"
546546
git config --local user.name "stdlib-bot"
@@ -735,8 +735,8 @@ jobs:
735735
echo "bump=true" >> $GITHUB_OUTPUT
736736
fi
737737
738-
# Configure git:
739-
- name: 'Configure git'
738+
# Configure Git:
739+
- name: 'Configure Git'
740740
if: steps.check-if-bump.outputs.bump
741741
run: |
742742
git config --local user.email "noreply@stdlib.io"

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ jobs:
7272
node-version: 20
7373
timeout-minutes: 5
7474

75-
# Configure git:
76-
- name: 'Configure git'
75+
# Configure Git:
76+
- name: 'Configure Git'
7777
run: |
7878
git config --local user.email "noreply@stdlib.io"
7979
git config --local user.name "stdlib-bot"
@@ -206,7 +206,7 @@ jobs:
206206
# Publish package to npm:
207207
- name: 'Publish package to npm'
208208
# Pin action to full length commit SHA
209-
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
209+
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
210210
with:
211211
token: ${{ secrets.NPM_TOKEN }}
212212
access: public

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ docs/**/node_modules/
101101
pids
102102
*.pid
103103
*.seed
104+
yarn.lock
105+
package-lock.json
104106

105107
# Typescript #
106108
##############

.npmrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ shrinkwrap = false
2727
# Disable automatically "saving" dependencies on install:
2828
save = false
2929

30-
# Generate provenance metadata:
31-
provenance = true
30+
# Do not generate provenance metadata:
31+
provenance = false

CHANGELOG.md

Lines changed: 97 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
> Package changelog.
44
5-
<section class="release" id="unreleased">
5+
<section class="release" id="v0.3.0">
66

7-
## Unreleased (2024-07-17)
7+
## 0.3.0 (2024-07-29)
88

99
<section class="features">
1010

@@ -64,13 +64,48 @@ A total of 2 people contributed to this release. Thank you to the following cont
6464

6565
## 0.2.1 (2024-02-25)
6666

67+
<section class="commits">
68+
69+
### Commits
70+
71+
<details>
72+
73+
- [`1705bd2`](https://github.com/stdlib-js/stdlib/commit/1705bd2a3b89ea4826a88a7dbcf26ff0688bf693) - **docs:** move console statements _(by Athan Reines)_
74+
- [`c3278bc`](https://github.com/stdlib-js/stdlib/commit/c3278bcdad969362bbc1c44cf48f0a60beb65a30) - **test:** add main export tests _(by Athan Reines)_
75+
- [`5b3b916`](https://github.com/stdlib-js/stdlib/commit/5b3b916197b655cb8a759c1f9f2088f9459f9dca) - **docs:** fix type _(by Athan Reines)_
76+
77+
</details>
78+
79+
</section>
80+
81+
<!-- /.commits -->
82+
83+
<section class="contributors">
84+
85+
### Contributors
86+
87+
A total of 1 person contributed to this release. Thank you to this contributor:
88+
89+
- Athan Reines
90+
91+
</section>
92+
93+
<!-- /.contributors -->
94+
95+
</section>
96+
97+
<!-- /.release -->
98+
99+
<section class="release" id="v0.2.0">
100+
101+
## 0.2.0 (2024-02-15)
102+
67103
<section class="features">
68104

69105
### Features
70106

71107
- [`3a57fb4`](https://github.com/stdlib-js/stdlib/commit/3a57fb47211679fa520b5e1613b41aebd30eccf6) - add `assign` method and add support for an index accessor array
72108
- [`9c7897f`](https://github.com/stdlib-js/stdlib/commit/9c7897fd2d62795e42060d4f3596465613a555e3) - add support for strided accessor arrays
73-
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - update minimum TypeScript version
74109

75110
</section>
76111

@@ -86,6 +121,55 @@ A total of 2 people contributed to this release. Thank you to the following cont
86121

87122
<!-- /.bug-fixes -->
88123

124+
<section class="commits">
125+
126+
### Commits
127+
128+
<details>
129+
130+
- [`c308840`](https://github.com/stdlib-js/stdlib/commit/c308840c08be47f8fcce590a26bf4dbb717c028b) - **docs:** fix missing argument _(by Athan Reines)_
131+
- [`2b455da`](https://github.com/stdlib-js/stdlib/commit/2b455dafa7021c2de1e89a002f73a0205e0d3915) - **docs:** fix example _(by Athan Reines)_
132+
- [`3a57fb4`](https://github.com/stdlib-js/stdlib/commit/3a57fb47211679fa520b5e1613b41aebd30eccf6) - **feat:** add `assign` method and add support for an index accessor array _(by Athan Reines)_
133+
- [`cbe3466`](https://github.com/stdlib-js/stdlib/commit/cbe3466d0d0219a9b014892cdfc6f83975696b43) - **fix:** set default type to `unknown` _(by Athan Reines)_
134+
- [`9c7897f`](https://github.com/stdlib-js/stdlib/commit/9c7897fd2d62795e42060d4f3596465613a555e3) - **feat:** add support for strided accessor arrays _(by Athan Reines)_
135+
- [`8bfdc7a`](https://github.com/stdlib-js/stdlib/commit/8bfdc7a33ee401f6f02ed007de5c83fbf9f28354) - **docs:** update comment _(by Athan Reines)_
136+
137+
</details>
138+
139+
</section>
140+
141+
<!-- /.commits -->
142+
143+
<section class="contributors">
144+
145+
### Contributors
146+
147+
A total of 1 person contributed to this release. Thank you to this contributor:
148+
149+
- Athan Reines
150+
151+
</section>
152+
153+
<!-- /.contributors -->
154+
155+
</section>
156+
157+
<!-- /.release -->
158+
159+
<section class="release" id="v0.1.0">
160+
161+
## 0.1.0 (2023-09-24)
162+
163+
<section class="features">
164+
165+
### Features
166+
167+
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - update minimum TypeScript version
168+
169+
</section>
170+
171+
<!-- /.features -->
172+
89173
<section class="breaking-changes">
90174

91175
### BREAKING CHANGES
@@ -105,15 +189,6 @@ A total of 2 people contributed to this release. Thank you to the following cont
105189

106190
<details>
107191

108-
- [`1705bd2`](https://github.com/stdlib-js/stdlib/commit/1705bd2a3b89ea4826a88a7dbcf26ff0688bf693) - **docs:** move console statements _(by Athan Reines)_
109-
- [`c3278bc`](https://github.com/stdlib-js/stdlib/commit/c3278bcdad969362bbc1c44cf48f0a60beb65a30) - **test:** add main export tests _(by Athan Reines)_
110-
- [`5b3b916`](https://github.com/stdlib-js/stdlib/commit/5b3b916197b655cb8a759c1f9f2088f9459f9dca) - **docs:** fix type _(by Athan Reines)_
111-
- [`c308840`](https://github.com/stdlib-js/stdlib/commit/c308840c08be47f8fcce590a26bf4dbb717c028b) - **docs:** fix missing argument _(by Athan Reines)_
112-
- [`2b455da`](https://github.com/stdlib-js/stdlib/commit/2b455dafa7021c2de1e89a002f73a0205e0d3915) - **docs:** fix example _(by Athan Reines)_
113-
- [`3a57fb4`](https://github.com/stdlib-js/stdlib/commit/3a57fb47211679fa520b5e1613b41aebd30eccf6) - **feat:** add `assign` method and add support for an index accessor array _(by Athan Reines)_
114-
- [`cbe3466`](https://github.com/stdlib-js/stdlib/commit/cbe3466d0d0219a9b014892cdfc6f83975696b43) - **fix:** set default type to `unknown` _(by Athan Reines)_
115-
- [`9c7897f`](https://github.com/stdlib-js/stdlib/commit/9c7897fd2d62795e42060d4f3596465613a555e3) - **feat:** add support for strided accessor arrays _(by Athan Reines)_
116-
- [`8bfdc7a`](https://github.com/stdlib-js/stdlib/commit/8bfdc7a33ee401f6f02ed007de5c83fbf9f28354) - **docs:** update comment _(by Athan Reines)_
117192
- [`be39a25`](https://github.com/stdlib-js/stdlib/commit/be39a2571e5a340c822b8063a1a08e3d536093c3) - **refactor:** use `Collection` type _(by Athan Reines)_
118193
- [`e29732d`](https://github.com/stdlib-js/stdlib/commit/e29732dee616e2d94e91f87f78afd8aceb806017) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
119194

@@ -140,3 +215,13 @@ A total of 2 people contributed to this release. Thank you to the following cont
140215

141216
<!-- /.release -->
142217

218+
<section class="release" id="v0.0.1">
219+
220+
## 0.0.1 (2023-02-02)
221+
222+
No changes reported for this release.
223+
224+
</section>
225+
226+
<!-- /.release -->
227+

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Muhammad Haris <harriskhan047@outlook.com>
5151
Naresh Jagadeesan <naresh.naresh000@gmail.com>
5252
NightKnight <Ahmedatwa866@yahoo.com>
5353
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
54+
Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com>
5455
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
5556
Oneday12323 <107678750+Oneday12323@users.noreply.github.com>
5657
Philipp Burckhardt <pburckhardt@outlook.com>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
202202
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-take.svg
203203
[npm-url]: https://npmjs.org/package/@stdlib/array-base-take
204204

205-
[test-image]: https://github.com/stdlib-js/array-base-take/actions/workflows/test.yml/badge.svg?branch=main
206-
[test-url]: https://github.com/stdlib-js/array-base-take/actions/workflows/test.yml?query=branch:main
205+
[test-image]: https://github.com/stdlib-js/array-base-take/actions/workflows/test.yml/badge.svg?branch=v0.3.0
206+
[test-url]: https://github.com/stdlib-js/array-base-take/actions/workflows/test.yml?query=branch:v0.3.0
207207

208208
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-take/main.svg
209209
[coverage-url]: https://codecov.io/github/stdlib-js/array-base-take?branch=main

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/array-base-take",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "Take elements from an array.",
55
"license": "Apache-2.0",
66
"author": {
@@ -40,39 +40,39 @@
4040
"@stdlib/array-base-arraylike2object": "^0.2.1",
4141
"@stdlib/array-base-assert-is-boolean-data-type": "^0.0.1",
4242
"@stdlib/array-base-assert-is-complex-floating-point-data-type": "^0.2.1",
43-
"@stdlib/array-base-resolve-getter": "^0.2.1",
44-
"@stdlib/ndarray-base-ind": "^0.2.1",
45-
"@stdlib/strided-base-reinterpret-boolean": "^0.0.1",
46-
"@stdlib/strided-base-reinterpret-complex": "^0.1.1",
43+
"@stdlib/array-base-resolve-getter": "^0.2.2",
44+
"@stdlib/ndarray-base-ind": "^0.2.2",
45+
"@stdlib/strided-base-reinterpret-boolean": "^0.0.2",
46+
"@stdlib/strided-base-reinterpret-complex": "^0.1.2",
4747
"@stdlib/types": "^0.3.2",
48-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1"
48+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2"
4949
},
5050
"devDependencies": {
51-
"@stdlib/array-base-filled-by": "^0.2.1",
52-
"@stdlib/array-base-linspace": "^0.2.1",
51+
"@stdlib/array-base-filled-by": "^0.2.2",
52+
"@stdlib/array-base-linspace": "^0.2.2",
5353
"@stdlib/array-base-to-accessor-array": "^0.2.1",
5454
"@stdlib/array-base-zero-to": "^0.2.1",
55-
"@stdlib/array-bool": "^0.0.1",
56-
"@stdlib/array-complex128": "^0.2.1",
57-
"@stdlib/array-complex64": "^0.2.1",
58-
"@stdlib/array-float64": "^0.2.1",
59-
"@stdlib/array-zeros": "^0.2.1",
60-
"@stdlib/assert-has-own-property": "^0.2.1",
61-
"@stdlib/assert-is-array": "^0.2.1",
62-
"@stdlib/assert-is-complex64": "^0.2.1",
63-
"@stdlib/assert-is-method": "^0.2.1",
55+
"@stdlib/array-bool": "^0.1.0",
56+
"@stdlib/array-complex128": "^0.3.0",
57+
"@stdlib/array-complex64": "^0.3.0",
58+
"@stdlib/array-float64": "^0.2.2",
59+
"@stdlib/array-zeros": "^0.2.2",
60+
"@stdlib/assert-has-own-property": "^0.2.2",
61+
"@stdlib/assert-is-array": "^0.2.2",
62+
"@stdlib/assert-is-complex64": "^0.2.2",
63+
"@stdlib/assert-is-method": "^0.2.2",
6464
"@stdlib/assert-is-same-booleanarray": "github:stdlib-js/assert-is-same-booleanarray#main",
6565
"@stdlib/assert-is-same-complex128array": "^0.2.1",
6666
"@stdlib/assert-is-same-complex64array": "^0.2.1",
67-
"@stdlib/complex-float32-imag": "github:stdlib-js/complex-float32-imag#main",
68-
"@stdlib/complex-float32-real": "github:stdlib-js/complex-float32-real#main",
69-
"@stdlib/math-base-special-pow": "^0.2.1",
67+
"@stdlib/complex-float32-imag": "^0.1.1",
68+
"@stdlib/complex-float32-real": "^0.1.1",
69+
"@stdlib/math-base-special-pow": "^0.3.0",
7070
"@stdlib/random-array-discrete-uniform": "^0.2.1",
7171
"@stdlib/random-base-discrete-uniform": "^0.2.1",
7272
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
7373
"istanbul": "^0.4.1",
7474
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
75-
"@stdlib/bench-harness": "^0.2.1"
75+
"@stdlib/bench-harness": "^0.2.2"
7676
},
7777
"engines": {
7878
"node": ">=0.10.0",

0 commit comments

Comments
 (0)