Skip to content

Commit 41a335a

Browse files
committed
Release v0.2.3
1 parent 213d1c7 commit 41a335a

File tree

4 files changed

+23
-30
lines changed

4 files changed

+23
-30
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,6 @@ jobs:
7676
npm install || npm install || npm install
7777
timeout-minutes: 15
7878

79-
# Build native add-on if present:
80-
- name: 'Build native add-on (if present)'
81-
run: |
82-
if [ -f "binding.gyp" ]; then
83-
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
84-
fi
85-
8679
# Run tests:
8780
- name: 'Run tests'
8881
id: tests

CHANGELOG.md

Lines changed: 2 additions & 2 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.2.3">
66

7-
## Unreleased (2026-01-31)
7+
## 0.2.3 (2026-02-08)
88

99
<section class="commits">
1010

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
377377
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-to-circular-iterator.svg
378378
[npm-url]: https://npmjs.org/package/@stdlib/array-to-circular-iterator
379379

380-
[test-image]: https://github.com/stdlib-js/array-to-circular-iterator/actions/workflows/test.yml/badge.svg?branch=main
381-
[test-url]: https://github.com/stdlib-js/array-to-circular-iterator/actions/workflows/test.yml?query=branch:main
380+
[test-image]: https://github.com/stdlib-js/array-to-circular-iterator/actions/workflows/test.yml/badge.svg?branch=v0.2.3
381+
[test-url]: https://github.com/stdlib-js/array-to-circular-iterator/actions/workflows/test.yml?query=branch:v0.2.3
382382

383383
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-to-circular-iterator/main.svg
384384
[coverage-url]: https://codecov.io/github/stdlib-js/array-to-circular-iterator?branch=main

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/array-to-circular-iterator",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Create an iterator which repeatedly iterates over the elements of an array-like object.",
55
"license": "Apache-2.0",
66
"author": {
@@ -38,32 +38,32 @@
3838
},
3939
"dependencies": {
4040
"@stdlib/array-base-accessor-getter": "^0.2.2",
41-
"@stdlib/array-base-assert-is-accessor-array": "^0.2.2",
42-
"@stdlib/array-base-getter": "^0.2.2",
41+
"@stdlib/array-base-assert-is-accessor-array": "^0.2.3",
42+
"@stdlib/array-base-getter": "^0.2.3",
4343
"@stdlib/array-dtype": "^0.3.0",
44-
"@stdlib/assert-has-own-property": "^0.2.2",
45-
"@stdlib/assert-is-collection": "^0.2.2",
46-
"@stdlib/assert-is-function": "^0.2.2",
47-
"@stdlib/assert-is-nonnegative-integer": "^0.2.2",
48-
"@stdlib/assert-is-plain-object": "^0.2.2",
49-
"@stdlib/string-format": "^0.2.2",
50-
"@stdlib/symbol-iterator": "^0.2.2",
44+
"@stdlib/assert-has-own-property": "^0.2.3",
45+
"@stdlib/assert-is-collection": "^0.2.3",
46+
"@stdlib/assert-is-function": "^0.2.3",
47+
"@stdlib/assert-is-nonnegative-integer": "^0.2.3",
48+
"@stdlib/assert-is-plain-object": "^0.2.3",
49+
"@stdlib/string-format": "^0.2.3",
50+
"@stdlib/symbol-iterator": "^0.2.3",
5151
"@stdlib/types": "^0.4.3",
52-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
53-
"@stdlib/error-tools-fmtprodmsg": "^0.2.2"
52+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3",
53+
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"
5454
},
5555
"devDependencies": {
56-
"@stdlib/array-float64": "^0.2.2",
57-
"@stdlib/assert-is-iterator-like": "^0.2.2",
58-
"@stdlib/math-base-assert-is-nan": "^0.2.2",
59-
"@stdlib/random-base-randu": "^0.2.1",
60-
"@stdlib/utils-inmap": "^0.2.2",
61-
"@stdlib/utils-noop": "^0.2.2",
56+
"@stdlib/array-float64": "^0.2.3",
57+
"@stdlib/assert-is-iterator-like": "^0.2.3",
58+
"@stdlib/math-base-assert-is-nan": "^0.2.3",
59+
"@stdlib/random-base-randu": "^0.2.2",
60+
"@stdlib/utils-inmap": "^0.2.3",
61+
"@stdlib/utils-noop": "^0.2.3",
6262
"proxyquire": "^2.0.0",
6363
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6464
"istanbul": "^0.4.1",
6565
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
66-
"@stdlib/bench-harness": "^0.2.2"
66+
"@stdlib/bench-harness": "^0.2.3"
6767
},
6868
"engines": {
6969
"node": ">=0.10.0",

0 commit comments

Comments
 (0)