Skip to content

Commit f93bb29

Browse files
committed
Release v0.2.2
1 parent 5bb4877 commit f93bb29

File tree

8 files changed

+194
-33
lines changed

8 files changed

+194
-33
lines changed

.github/workflows/productionize.yml

+10-10
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 "[email protected]"
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 "[email protected]"
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 "[email protected]"
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 "[email protected]"
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 "[email protected]"

.github/workflows/publish.yml

+7-3
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 "[email protected]"
7979
git config --local user.name "stdlib-bot"
@@ -94,6 +94,10 @@ jobs:
9494
# Replace branch in README.md link definitions for badges with the new version:
9595
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g"
9696
97+
# Rewrite CHANGELOG.md to replace "Unreleased" with the new version:
98+
sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md
99+
sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md
100+
97101
# Create a new commit and tag:
98102
git add package.json README.md
99103
git commit -m "Release v${NEW_VERSION}"
@@ -202,7 +206,7 @@ jobs:
202206
# Publish package to npm:
203207
- name: 'Publish package to npm'
204208
# Pin action to full length commit SHA
205-
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
209+
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
206210
with:
207211
token: ${{ secrets.NPM_TOKEN }}
208212
access: public

.gitignore

+2
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

+2-2
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

+154-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,157 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/array-base-assert-is-accessor-array/releases) for the changelog.
5+
<section class="release" id="v0.2.2">
6+
7+
## 0.2.2 (2024-07-29)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Athan Reines
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
39+
<section class="release" id="v0.2.1">
40+
41+
## 0.2.1 (2024-02-25)
42+
43+
No changes reported for this release.
44+
45+
</section>
46+
47+
<!-- /.release -->
48+
49+
<section class="release" id="v0.2.0">
50+
51+
## 0.2.0 (2024-02-14)
52+
53+
<section class="commits">
54+
55+
### Commits
56+
57+
<details>
58+
59+
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
60+
- [`453dd85`](https://github.com/stdlib-js/stdlib/commit/453dd85b5dd186d2b4d458256fe84906e1503fe2) - **build:** remove tslint directives _(by Philipp Burckhardt)_
61+
62+
</details>
63+
64+
</section>
65+
66+
<!-- /.commits -->
67+
68+
<section class="contributors">
69+
70+
### Contributors
71+
72+
A total of 1 person contributed to this release. Thank you to this contributor:
73+
74+
- Philipp Burckhardt
75+
76+
</section>
77+
78+
<!-- /.contributors -->
79+
80+
</section>
81+
82+
<!-- /.release -->
83+
84+
<section class="release" id="v0.1.0">
85+
86+
## 0.1.0 (2023-09-24)
87+
88+
<section class="features">
89+
90+
### Features
91+
92+
- [`7b7f001`](https://github.com/stdlib-js/stdlib/commit/7b7f001b6f0d25a71ae27bda216c911dfa844305) - refactor declarations to allow narrowing
93+
94+
</section>
95+
96+
<!-- /.features -->
97+
98+
<section class="bug-fixes">
99+
100+
### Bug Fixes
101+
102+
- [`14bacb3`](https://github.com/stdlib-js/stdlib/commit/14bacb3cbfced427bcbadae7cbc649a62bb62b69) - update import path for `Collection` type definition
103+
104+
</section>
105+
106+
<!-- /.bug-fixes -->
107+
108+
<section class="breaking-changes">
109+
110+
### BREAKING CHANGES
111+
112+
- [`7b7f001`](https://github.com/stdlib-js/stdlib/commit/7b7f001b6f0d25a71ae27bda216c911dfa844305): refactor declarations to allow narrowing
113+
114+
</section>
115+
116+
<!-- /.breaking-changes -->
117+
118+
<section class="commits">
119+
120+
### Commits
121+
122+
<details>
123+
124+
- [`14bacb3`](https://github.com/stdlib-js/stdlib/commit/14bacb3cbfced427bcbadae7cbc649a62bb62b69) - **fix:** update import path for `Collection` type definition _(by Athan Reines)_
125+
- [`7b7f001`](https://github.com/stdlib-js/stdlib/commit/7b7f001b6f0d25a71ae27bda216c911dfa844305) - **feat:** refactor declarations to allow narrowing _(by Athan Reines)_
126+
127+
</details>
128+
129+
</section>
130+
131+
<!-- /.commits -->
132+
133+
<section class="contributors">
134+
135+
### Contributors
136+
137+
A total of 1 person contributed to this release. Thank you to this contributor:
138+
139+
- Athan Reines
140+
141+
</section>
142+
143+
<!-- /.contributors -->
144+
145+
</section>
146+
147+
<!-- /.release -->
148+
149+
<section class="release" id="v0.0.1">
150+
151+
## 0.0.1 (2023-02-02)
152+
153+
No changes reported for this release.
154+
155+
</section>
156+
157+
<!-- /.release -->
158+

CONTRIBUTORS

+3-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Muhammad Haris <[email protected]>
5151
Naresh Jagadeesan <[email protected]>
5252
NightKnight <[email protected]>
5353
Nithin Katta <[email protected]>
54+
Nourhan Hasan <[email protected]>
5455
Ognjen Jevremović <[email protected]>
5556
Oneday12323 <[email protected]>
5657
Philipp Burckhardt <[email protected]>
@@ -63,6 +64,7 @@ Pushpendra Chandravanshi <[email protected]>
6364
Raunak Kumar Gupta <[email protected]>
6465
Rejoan Sardar <[email protected]>
6566
Ricky Reusser <[email protected]>
67+
Ridam Garg <[email protected]>
6668
Robert Gislason <[email protected]>
6769
Roman Stetsyk <[email protected]>
6870
@@ -75,7 +77,7 @@ Shraddheya Shendre <[email protected]>
7577
Shubh Mehta <[email protected]>
7678
Shubham Mishra <[email protected]>
7779
Sivam Das <[email protected]>
78-
Snehil Shah <[email protected].com>
80+
Snehil Shah <snehilshah.989@gmail.com>
7981
Soumajit Chatterjee <[email protected]>
8082
Spandan Barve <[email protected]>
8183
Stephannie Jiménez Gacha <[email protected]>

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
213213
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-assert-is-accessor-array.svg
214214
[npm-url]: https://npmjs.org/package/@stdlib/array-base-assert-is-accessor-array
215215

216-
[test-image]: https://github.com/stdlib-js/array-base-assert-is-accessor-array/actions/workflows/test.yml/badge.svg?branch=main
217-
[test-url]: https://github.com/stdlib-js/array-base-assert-is-accessor-array/actions/workflows/test.yml?query=branch:main
216+
[test-image]: https://github.com/stdlib-js/array-base-assert-is-accessor-array/actions/workflows/test.yml/badge.svg?branch=v0.2.2
217+
[test-url]: https://github.com/stdlib-js/array-base-assert-is-accessor-array/actions/workflows/test.yml?query=branch:v0.2.2
218218

219219
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-assert-is-accessor-array/main.svg
220220
[coverage-url]: https://codecov.io/github/stdlib-js/array-base-assert-is-accessor-array?branch=main

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/array-base-assert-is-accessor-array",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Test if an array-like object supports the accessor (get/set) protocol.",
55
"license": "Apache-2.0",
66
"author": {
@@ -42,22 +42,22 @@
4242
"devDependencies": {
4343
"@stdlib/array-complex128": "^0.2.1",
4444
"@stdlib/array-complex64": "^0.2.1",
45-
"@stdlib/array-float32": "^0.2.1",
46-
"@stdlib/array-float64": "^0.2.1",
47-
"@stdlib/array-int16": "^0.2.1",
48-
"@stdlib/array-int32": "^0.2.1",
49-
"@stdlib/array-int8": "^0.2.1",
50-
"@stdlib/array-uint16": "^0.2.1",
51-
"@stdlib/array-uint32": "^0.2.1",
52-
"@stdlib/array-uint8": "^0.2.1",
53-
"@stdlib/array-uint8c": "^0.2.1",
54-
"@stdlib/assert-is-boolean": "^0.2.1",
55-
"@stdlib/buffer-alloc-unsafe": "^0.2.1",
56-
"@stdlib/utils-constructor-name": "^0.2.1",
45+
"@stdlib/array-float32": "^0.2.2",
46+
"@stdlib/array-float64": "^0.2.2",
47+
"@stdlib/array-int16": "^0.2.2",
48+
"@stdlib/array-int32": "^0.2.2",
49+
"@stdlib/array-int8": "^0.2.2",
50+
"@stdlib/array-uint16": "^0.2.2",
51+
"@stdlib/array-uint32": "^0.2.2",
52+
"@stdlib/array-uint8": "^0.2.2",
53+
"@stdlib/array-uint8c": "^0.2.2",
54+
"@stdlib/assert-is-boolean": "^0.2.2",
55+
"@stdlib/buffer-alloc-unsafe": "^0.2.2",
56+
"@stdlib/utils-constructor-name": "^0.2.2",
5757
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5858
"istanbul": "^0.4.1",
5959
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
60-
"@stdlib/bench-harness": "^0.2.1"
60+
"@stdlib/bench-harness": "^0.2.2"
6161
},
6262
"engines": {
6363
"node": ">=0.10.0",

0 commit comments

Comments
 (0)