Skip to content

Commit ac89a30

Browse files
committed
Release v0.2.2
1 parent 38de76f commit ac89a30

File tree

7 files changed

+187
-33
lines changed

7 files changed

+187
-33
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: 7 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"
@@ -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

.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: 149 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,152 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/assert-is-accessor-array/releases) for the changelog.
5+
<section class="release" id="v0.2.2">
6+
7+
## 0.2.2 (2024-07-28)
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-24)
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+
- [`45a2bec`](https://github.com/stdlib-js/stdlib/commit/45a2becb6d02b484aaddcdd8c501f2e4dff90967) - **docs:** update links _(by Athan Reines)_
61+
62+
</details>
63+
64+
</section>
65+
66+
<!-- /.commits -->
67+
68+
<section class="contributors">
69+
70+
### Contributors
71+
72+
A total of 2 people contributed to this release. Thank you to the following contributors:
73+
74+
- Athan Reines
75+
- Philipp Burckhardt
76+
77+
</section>
78+
79+
<!-- /.contributors -->
80+
81+
</section>
82+
83+
<!-- /.release -->
84+
85+
<section class="release" id="v0.1.0">
86+
87+
## 0.1.0 (2023-09-23)
88+
89+
<section class="features">
90+
91+
### Features
92+
93+
- [`5200ce2`](https://github.com/stdlib-js/stdlib/commit/5200ce2447b32d7a8d351daa5b1868194878d7be) - update minimum TypeScript version
94+
- [`3c153c4`](https://github.com/stdlib-js/stdlib/commit/3c153c4341c58db2fde9b616f1990be964482cf8) - use type predicates for narrowing
95+
96+
</section>
97+
98+
<!-- /.features -->
99+
100+
<section class="breaking-changes">
101+
102+
### BREAKING CHANGES
103+
104+
- [`5200ce2`](https://github.com/stdlib-js/stdlib/commit/5200ce2447b32d7a8d351daa5b1868194878d7be): update minimum TypeScript version
105+
- [`5200ce2`](https://github.com/stdlib-js/stdlib/commit/5200ce2447b32d7a8d351daa5b1868194878d7be): update minimum TypeScript version to 4.1
106+
107+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
108+
109+
</section>
110+
111+
<!-- /.breaking-changes -->
112+
113+
<section class="commits">
114+
115+
### Commits
116+
117+
<details>
118+
119+
- [`5200ce2`](https://github.com/stdlib-js/stdlib/commit/5200ce2447b32d7a8d351daa5b1868194878d7be) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
120+
- [`3c153c4`](https://github.com/stdlib-js/stdlib/commit/3c153c4341c58db2fde9b616f1990be964482cf8) - **feat:** use type predicates for narrowing _(by Philipp Burckhardt)_
121+
122+
</details>
123+
124+
</section>
125+
126+
<!-- /.commits -->
127+
128+
<section class="contributors">
129+
130+
### Contributors
131+
132+
A total of 1 person contributed to this release. Thank you to this contributor:
133+
134+
- Philipp Burckhardt
135+
136+
</section>
137+
138+
<!-- /.contributors -->
139+
140+
</section>
141+
142+
<!-- /.release -->
143+
144+
<section class="release" id="v0.0.1">
145+
146+
## 0.0.1 (2023-02-02)
147+
148+
No changes reported for this release.
149+
150+
</section>
151+
152+
<!-- /.release -->
153+

CONTRIBUTORS

Lines changed: 3 additions & 1 deletion
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>
@@ -63,6 +64,7 @@ Pushpendra Chandravanshi <pushpendrachandravanshi4@gmail.com>
6364
Raunak Kumar Gupta <raunakmodanwal321@gmail.com>
6465
Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
6566
Ricky Reusser <rsreusser@gmail.com>
67+
Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
6668
Robert Gislason <gztown2216@yahoo.com>
6769
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
6870
Rutam <138517416+performant23@users.noreply.github.com>
@@ -75,7 +77,7 @@ Shraddheya Shendre <shendreshraddheya@gmail.com>
7577
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
7678
Shubham Mishra <shubh622005@gmail.com>
7779
Sivam Das <100067002+Sivam2313@users.noreply.github.com>
78-
Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
80+
Snehil Shah <snehilshah.989@gmail.com>
7981
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
8082
Spandan Barve <contact@marsian.dev>
8183
Stephannie Jiménez Gacha <steff456@hotmail.com>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
239239
[npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-accessor-array.svg
240240
[npm-url]: https://npmjs.org/package/@stdlib/assert-is-accessor-array
241241

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

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

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/assert-is-accessor-array",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Test if a value is an array-like object supporting the accessor (get/set) protocol.",
55
"license": "Apache-2.0",
66
"author": {
@@ -38,23 +38,23 @@
3838
},
3939
"dependencies": {
4040
"@stdlib/assert-is-collection": "^0.2.1",
41-
"@stdlib/assert-is-function": "^0.2.1"
41+
"@stdlib/assert-is-function": "^0.2.2"
4242
},
4343
"devDependencies": {
4444
"@stdlib/array-complex128": "^0.2.1",
4545
"@stdlib/array-complex64": "^0.2.1",
46-
"@stdlib/array-float32": "^0.2.1",
47-
"@stdlib/array-float64": "^0.2.1",
48-
"@stdlib/array-int16": "^0.2.1",
49-
"@stdlib/array-int32": "^0.2.1",
50-
"@stdlib/array-int8": "^0.2.1",
51-
"@stdlib/array-uint16": "^0.2.1",
52-
"@stdlib/array-uint32": "^0.2.1",
53-
"@stdlib/array-uint8": "^0.2.1",
54-
"@stdlib/array-uint8c": "^0.2.1",
55-
"@stdlib/assert-is-boolean": "^0.2.1",
56-
"@stdlib/buffer-alloc-unsafe": "^0.2.1",
57-
"@stdlib/utils-constructor-name": "^0.2.1",
46+
"@stdlib/array-float32": "^0.2.2",
47+
"@stdlib/array-float64": "^0.2.2",
48+
"@stdlib/array-int16": "^0.2.2",
49+
"@stdlib/array-int32": "^0.2.2",
50+
"@stdlib/array-int8": "^0.2.2",
51+
"@stdlib/array-uint16": "^0.2.2",
52+
"@stdlib/array-uint32": "^0.2.2",
53+
"@stdlib/array-uint8": "^0.2.2",
54+
"@stdlib/array-uint8c": "^0.2.2",
55+
"@stdlib/assert-is-boolean": "^0.2.2",
56+
"@stdlib/buffer-alloc-unsafe": "^0.2.2",
57+
"@stdlib/utils-constructor-name": "^0.2.2",
5858
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5959
"istanbul": "^0.4.1",
6060
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)